ApplyRight

template ApplyRight (
Args...
) {}

Members

Aliases

ApplyRight
alias ApplyRight(U...) = T!(U, Args)
Undocumented in source.

Parameters

T

A template.

Args

The last arguments for T.

Return Value

T with Args applied to it as itslast arguments.

Examples

alias intIs = ApplyRight!(allSatisfy, int);
static assert(intIs!(isIntegral));
static assert(!intIs!(isUnsigned));

Meta