Vector.Vector

  1. struct Vector(T, int _Dim : 2)
    struct Vector(T, int Dim)
    struct Vector (
    T
    int _Dim : 2
    ) {
    T[2] data;
    }
  2. struct Vector(T, int _Dim : 3)
  3. struct Vector(T, int _Dim : 4)

Constructors

this
this(U x)

Constructor for scalars

this
this(U x, U y)

Constructor for parameter lists

this
this(Vector2T!T vec)

Constructor for vectors of same type

this
this(T[] list)

Constructor for explicit lists

Meta