operator + method

List<E> operator +(
  1. List<E> other
)

Implementation

List<E> operator +(List<E> other) {
  return value + other;
}