Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.