UOrd
A library providing implementations of unordered pairs (or more generally, unordered sets).
This is useful when, for example, you want to create a HashMap that associates data with pairs of things:
use UOrd2;
use HashMap;
let mut map: = new;
map.insert;
map.insert;
map.insert;
assert!;
When creating a [UOrd], the ordering of the items on creation does not matter,
and [UOrd]s created with different initial element orders will be equal to one another.