merge method

List<T> merge(
  1. List<T> other
)

Implementation

List<T> merge(List<T> other) {
  return this + other;
}