Expand description
This crate provides a UnorderedNTuple, which is a struct that represents unordered tuples of
n homogenous elements.
§Crate Features
std: Enables dependence onstdto allow for more featuresserde: Enabls serializing/deserializing theUnorderedNTuplestruct in serde
By default, both features are enabled.
Structs§
- UnorderedN
Tuple - A type which represents an unordered tuple of N elements (i.e. an unordered pair if N == 2, and unordered triplet if N == 3, and so on).
Type Aliases§
- Unordered
Pair - An
UnorderedPairis a special subtype ofUnorderedNTuplefor only 2 elements. This has been given its own type for ease of use.