Sign.opIndex

Gets the array with the text in the four lines.

  1. string[4] opIndex()
    class Sign
    @safe @nogc
    string[4]
    opIndex
    ()
  2. string opIndex(size_t index)

Examples

sign[2] = "test";
assert(sign[] == ["", "", "test", ""]);

Meta