values property - SplayTreeMap class - dart:collection library (original) (raw)

Iterable<V> getvalues

override

The values of this Map.

The values are iterated in the order of their corresponding keys. This means that iterating keys and values in parallel will provide matching pairs of keys and values.

The returned iterable has an efficient length method based on thelength of the map. Its Iterable.contains method is based on== comparison.

Modifying the map while iterating the values may break the iteration.

Implementation

Iterable<V> get values => _SplayTreeValueIterable<K, V>(this);