Skip to content

Latest commit

 

History

History
39 lines (22 loc) · 511 Bytes

README.md

File metadata and controls

39 lines (22 loc) · 511 Bytes

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