immutable_collection 0.2.0+2 immutable_collection: ^0.2.0+2 copied to clipboard
Immutable collections, IList<E>, ISet<E>, IMap<K, V>. They all compare as value types.
Immutable collections #
Immutable collections that compare as value types.
Immutable List<E>
as IList<E>
.
Immutable HashSet<E>
as ISet<E>
.
Immutable HashMap<K, V>
as IMap<K, V>
.
If you want immutable data classes and discriminated unions that compare as value types, you might use data classes and discriminated unions.