numem.core.meta

Numem meta templates.

Most of these are taken directly from the D runtime.

Members

Aliases

AliasSeq
alias AliasSeq(AliasList...) = AliasList

Equivalent to D runtime's AliasSeq.

Templates

Filter
template Filter(alias F, T...)

Returns a sequence containing the provided sequence after filtering by F.

allSatisfy
template allSatisfy(alias F, T...)

A template which gets whether all the inputs satisfy the condition outlined in F.

anySatisfy
template anySatisfy(alias F, T...)

A template which gets whether any of the inputs satisfy the condition outlined in F.

staticMap
template staticMap(alias F, T...)

Returns a sequence of F!(T[0]), F!(T[1]), ..., F!(T[$-1])

Meta