followedBy method

  1. @override
Iterable<E> followedBy(
  1. Iterable<E> other
)
override

Returns an iterable of this set followed by other.

This is a non-mutating operation that returns an iterable.

Implementation

@override
Iterable<E> followedBy(Iterable<E> other) => value.followedBy(other);