operator + method

NatrixText operator +(
  1. NatrixText other
)

Implementation

NatrixText operator +(NatrixText other) {
  return NatrixText.join([this, other]);
}