operator + method

String operator +(
  1. String other
)

Implementation

String operator +(String other) {
  return value + other;
}