W3cubDocs

/Dart 2

operator + method

List<int> operator + (List<int> other)
inherited

Returns the concatenation of this list and other.

If other is also a typed-data integer list, the returned list will be a type-data integer list capable of containing all the elements of this list and of other. Otherwise the returned list will be a normal growable List<int>.

Implementation

List<int> operator +(List<int> other);

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-typed_data/Uint16List/operator_plus.html