operator + method

Buffer operator +(
  1. Iterable<int> other
)

Creates a new Buffer by concatenating this and [other].

Implementation

Buffer operator +(final Iterable<int> other)
  => Buffer.fromList(_data + other.toList(growable: false));