for more information visit the package's GitHub page
Package contains the following modules:
Create ordered lists with unique elements.
UniqueList
is similar to Set
, but with two major differences:
UniqueList
need not be comparable
.UniqueList works using equality checks internally. That means your code will break if you use a type that cannot be equated using ==
. This includes functions and json (Json.Encode.Value
and Json.Decode.Value
).
If you think this package could be improved, let me know by opening an issue or a pull request.