A Supplementary Collections Module for Ceylon.
This module was inspired by and adapted from Google Guava under the Apache License Version 2.0.
Currently implemented types are:
-
LinkedListMultimap<Key, Item>
: a mutableCollection<Key->Item>
andCorrespondence
fromKey
toMutableList<Item>
that supports deterministic iteration order for both keys and items. -
HashMultimap<Key, Item>
: a mutableCollection<Key->Item>
andCorrespondence
fromKey
toMutableSet<Item>
that does not store duplicatekey->item
entries.
The content of this repository is released under the ASL v2.0 as provided in the LICENSE file that accompanied this code.
By submitting a "pull request" or otherwise contributing to this repository, you agree to license your contribution under the license mentioned above.