Multiset<E>.from constructor

Multiset<E>.from(
  1. Iterable<E> other
)

Creates a Multiset that contains all elements of other.

Implementation

factory Multiset.from(Iterable<E> other) => Multiset.of(other);