add method

void add (
  1. TextBit bit
)

Adds bit to the tail of this container.

Implementation

void add(TextBit bit) {
  assert(bit.parent == this);
  _children.add(bit);
}