operator + abstract method

Characters operator +(
  1. Characters other
)

The characters of the concatenation of this and other.

This is the characters of the concatenation of the underlying strings. If there is no character break at the concatenation point in the resulting string, then the result is not the concatenation of the two character sequences.

This differs from followedBy which provides the lazy concatenation of this sequence of strings with any other sequence of strings.

Implementation

Characters operator +(Characters other);