Sign.opIndexAssign

Sets all the four lines of the sign.

  1. void opIndexAssign(string[4] texts)
    class Sign
    void
    opIndexAssign
    (
    string[4] texts
    )
  2. void opIndexAssign(string text)
  3. void opIndexAssign(string text, size_t index)

Parameters

texts string[4]

four strings to be set in sign's lines

Examples

sign[] = ["a", "b", "", "d"];
assert(sign[0] == "a");

Meta