Matrix.opCast

Casts matrix to a string.

  1. NewType opCast()
  2. string opCast()
    struct Matrix(size_t Lines, size_t Cols, Type = float)
    @trusted
    string
    opCast
    (
    NewType
    )
    ()
    if (
    is(NewType == string)
    )
    if (
    Lines > 0 &&
    Cols > 0
    )

Meta