stribog.meta.map

Public Imports

std.typetuple
public import std.typetuple : staticMap;

Members

Aliases

staticMap2
alias staticMap2(alias F, T...) = staticMapN!(2, F, T)

Alias of staticMapN for 2 arguments

staticMap3
alias staticMap3(alias F, T...) = staticMapN!(3, F, T)

Alias of staticMapN for 3 arguments

staticMap4
alias staticMap4(alias F, T...) = staticMapN!(4, F, T)

Alias of staticMapN for 4 arguments

staticMap5
alias staticMap5(alias F, T...) = staticMapN!(5, F, T)

Alias of staticMapN for 5 arguments

staticMap6
alias staticMap6(alias F, T...) = staticMapN!(6, F, T)

Alias of staticMapN for 6 arguments

staticMap7
alias staticMap7(alias F, T...) = staticMapN!(7, F, T)

Alias of staticMapN for 7 arguments

staticMap8
alias staticMap8(alias F, T...) = staticMapN!(8, F, T)

Alias of staticMapN for 8 arguments

staticMap9
alias staticMap9(alias F, T...) = staticMapN!(9, F, T)

Alias of staticMapN for 9 arguments

Templates

staticMapN
template staticMapN(size_t i, alias F, T...)
Undocumented in source.

Meta

License

Subject to the terms of the Boost 1.0 license as specified in LICENSE file

Authors

Anton Gushcha <ncrashed@gmail.com>

Template maps - extension of std.typecons;