Matrix.opIndex

indexing operation

  1. T opIndex(size_t i, size_t j)
    struct Matrix(T, uint U, uint V)
    const
    T
    opIndex
    (
    size_t i
    ,
    size_t j
    )
    if (
    __traits(isArithmetic, T)
    )
  2. T opIndex(size_t i, size_t j)

Parameters

i size_t

column index

j size_t

row index

Return Value

Type: T

selected value

Meta