An Elm library for creating sets of any type
Create a set of any type, for example a record type:
import DictSet exposing (DictSet)
type alias User =
{ id : Int
, email : String
}
allUsers : List User
userSet : DictSet Int User
userSet =
DictSet.fromList .id allUsers
To run the tests, do:
npm install
npm test