Rope.this

Create a rope concatenating two other ropes.

Avoids gaps: If either node is empty, copies and becomes the other node.

  1. this(const(char)[] text)
  2. this(Rope left, Rope right)
    struct Rope
    inout pure nothrow
    this
    (
    inout Rope left
    ,
    inout Rope right
    )
  3. this(inout(RopeNode)* node)
  4. this(Rope rope)

Meta