Matrix.height

only: if( isStaticHeight )

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

Meta