Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rnons/ordered-containers
OrderedDict and OrderedSet for Elm
https://github.com/rnons/ordered-containers
elm
Last synced: about 1 month ago
JSON representation
OrderedDict and OrderedSet for Elm
- Host: GitHub
- URL: https://github.com/rnons/ordered-containers
- Owner: rnons
- License: bsd-3-clause
- Created: 2017-11-23T09:51:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-23T13:19:40.000Z (over 6 years ago)
- Last Synced: 2024-10-12T23:09:00.178Z (3 months ago)
- Topics: elm
- Language: Elm
- Homepage: http://package.elm-lang.org/packages/rnons/ordered-containers/latest
- Size: 22.5 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ordered-containers
**NOTE: This repo is not maintained any more. Feel free to fork and upload to elm-packages by yourself.**
[![Build Status](https://travis-ci.org/rnons/ordered-containers.svg?branch=master)](https://travis-ci.org/rnons/ordered-containers)
An Elm library that provides `OrderedDict` and `OrderedSet` data structures.
`OrderedDict` is similar to `Dict`, `OrderedSet` is similar to `Set`. The difference is when iterated or converted to a `List`, the order will be the same as the order they were inserted.