vector2d.this

Construct a new vector of the given size.

  1. this(size_t rows, size_t columns)
    struct vector2d(T)
    @nogc
    this
    (
    size_t rows
    ,
    size_t columns
    )
  2. this(vector2d other)
  3. this(vector2d other)

Parameters

rows size_t

The number of rows in the vector.

columns size_t

The number of columns in the vector.

Meta