Immutable sets, where comparison is the structural comparison function
These sets can be used with elements of any type, but you should check that
structural hashing and equality on the element type are correct for your type.
Efficiency: Structural comparison is relatively efficient but is not a suitable
choice in all circumstances, e.g. it may not compare efficiently on
non-reference types and deeply-structured types.
Full Type Signature
type Set <'a>
|