Matrix.opUnary

Unary operation for "+".

this is identity function

  1. Matrix!(T, U, V) opUnary()
    struct Matrix(T, uint U, uint V)
    const
    Matrix!(T, U, V)
    opUnary
    (
    string op
    )
    ()
    if (
    op == "+"
    )
    if (
    __traits(isArithmetic, T)
    )
  2. Matrix!(T, U, V) opUnary()

Return Value

Type: Matrix!(T, U, V)

a matrix which is equal to this matrix

Meta