Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elm-community/list-extra
Convenience functions for working with List.
https://github.com/elm-community/list-extra
convenience-functions elm list
Last synced: 6 days ago
JSON representation
Convenience functions for working with List.
- Host: GitHub
- URL: https://github.com/elm-community/list-extra
- Owner: elm-community
- License: mit
- Created: 2016-05-23T18:38:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-14T08:48:55.000Z (4 months ago)
- Last Synced: 2024-11-30T12:03:04.201Z (13 days ago)
- Topics: convenience-functions, elm, list
- Language: Elm
- Homepage: http://package.elm-lang.org/packages/elm-community/list-extra/latest
- Size: 457 KB
- Stars: 136
- Watchers: 6
- Forks: 59
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - elm-community/list-extra - Convenience functions for working with List. (Elm)
README
# Convenience functions for working with `List`
Feedback and contributions are very welcome!
## Tests
This package uses [elm-test](https://github.com/elm-explorations/test) and [elm-verify-examples](https://github.com/stoeffel/elm-verify-examples).
## Contributing
Pull requests are welcome. You can expect some kind of response within 14 days.
If you are proposing a new function be added, please adhere to the following..
1. Include [documentation](http://package.elm-lang.org/help/documentation-format) and make sure your documentation has a code snippet demonstrating what the function does. We use [elm-verify-examples](https://github.com/stoeffel/elm-verify-examples) in our travis set up which verifies our examples that our example code is correct, so please take advantage of that.
2. Provide a detailed use case where your new function would be useful. Also, compare your new function to the best possible implementation that doesn't use your function.
3. Add tests to `Tests/Tests.elm`If you are improving existing functions please demonstrate the performance gains in something like [Ellie](https://ellie-app.com/) and by using a benchmark library like [this one](https://github.com/elm-explorations/benchmark). I usually copy and paste the last ellie bench mark I made, like [this one](https://ellie-app.com/gm9X8yfPLXMa1), so I don't have to set up the whole benchmark from scratch every time.