partialSuffixed

Suffix a template with a set of arguments.

Suffix a template with a set of arguments. A suffixed template will have first arguments to be Args, and rest of passed arguments afterwards (Sargs).

  1. alias partialSuffixed = ApplyRight
  2. template partialSuffixed(alias pred, Args...)
    static if(!(__traits(hasMember, std.meta, "ApplyLeft")))
    template partialSuffixed (
    alias pred
    Args...
    ) {}

Members

Templates

partialSuffixed
template partialSuffixed(Sargs...)
Undocumented in source.

Parameters

pred

prefixable template

Args

arguments that are suffixed

Meta