Tuple

Creates a lightweight tuple of values.

  1. auto tuple(Args args)
  2. struct Tuple(Args...)
    @safe
    struct Tuple (
    Args...
    ) {}

Alias This

args

Alias this to args, for possible auto expansion.

Members

Aliases

expand
alias expand = args

Compatibility alias to expand functionality of std.typecons.Tuple

Variables

args
Args args;

The packed arguments.

Return Value

Tuple!Args a tuple of arguments, probably auto expandable thx to alias this.

Meta