Aes.this

Constructor taking a compatible array.

  1. this(Types values)
  2. this(U[n] values)
    struct Aes
    this
    (
    U
    size_t n
    )
    (
    U[n] values
    )
    if (
    n == Types.length &&
    allSatisfy!(isBuildableFrom!U, Types)
    )
  3. this(U another)

Examples

int[2] ints;
Tuple!(int, int) t = ints;

Meta