truqu/elm-dictset - version: 2.1.0

for more information visit the package's GitHub page

Package contains the following modules:

Elm-DictSet

Build Status

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