Vec.this

Build a vector from its components Can be called with any combination of scalar or vectors, as long as the total number of scalar fit with length

  1. this(Comps comps)
    struct Vec(T, size_t N)
    pure nothrow @nogc @safe
    this
    (
    Comps...
    )
    (
    in Comps comps
    )
    if (
    Comps.length > 1
    )
    if (
    N > 0 &&
    isNumeric!T
    )
  2. this(Arr arr)
  3. this(T comp)

Meta