Matrix.width

only: if( isStaticWidth )

  1. enum width;
    struct Matrix(size_t H, size_t W, E)
    pure
    static if(isStaticWidth)
    enum width = W;
  2. size_t width [@property getter]
  3. size_t width [@property setter]

Meta