getAll method

OrderedSet<Record> getAll(
  1. Key key
)

Retrieve all values associated with the key, in order.

Implementation

OrderedSet<Record> getAll(Key key) => _data[key] ?? OrderedSet<Record>();