truqu/elm-dictset

Sets for any type


License
MIT
Install
elm-package install truqu/elm-dictset 1.0.5

Documentation

Elm-DictSet

An Elm library for creating sets of any type

Usage

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

Tests

To run the tests, do:

npm install
npm test