Matrix.this

Constructor by InputRange. This matrix's all elements are filled by given range.

  1. this(T e)
  2. this(T[U * V] elements)
  3. this(Range r)
    struct Matrix(T, uint U, uint V)
    this
    (
    Range
    )
    (
    Range r
    )
    if (
    isInputRange!(Range) &&
    is(RangeElementType!(Range) : T)
    )
    if (
    __traits(isArithmetic, T)
    )
  4. this(T[U][V] elements)
  5. this(Vector!(T, U)[V] vectors)

Meta