operator + method

String operator +(
  1. Sequence oSeq
)

Returns the String sequence combination between this and oSeq.

Implementation

String operator +(Sequence oSeq) {
  if (this._type != oSeq.type) {
    Errors.unequalSeqTypes(func: '+');
  }
  return this._seq + oSeq.seq;
}