Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elm-community/random-extra
Extra functions for the core Random library.
https://github.com/elm-community/random-extra
Last synced: 2 months ago
JSON representation
Extra functions for the core Random library.
- Host: GitHub
- URL: https://github.com/elm-community/random-extra
- Owner: elm-community
- License: bsd-3-clause
- Created: 2016-05-30T04:08:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-29T18:40:34.000Z (almost 4 years ago)
- Last Synced: 2024-08-01T13:22:17.476Z (5 months ago)
- Language: Elm
- Homepage: http://package.elm-lang.org/packages/elm-community/random-extra/latest
- Size: 161 KB
- Stars: 27
- Watchers: 6
- Forks: 7
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - elm-community/random-extra - Extra functions for the core Random library. (Elm)
README
# elm-community/random-extra
This library includes lots of extra helper functions for the Random module. It makes generating pseudo-random values much easier.If you want to add one or find a bug, please [open an issue](https://github.com/elm-community/random-extra/issues/new). If you want to contribute, you can open a PR adding tests.
## Changelog
### 3.2.0
* Add `Random.List.choices`
* Use a uniform shuffle for both `Random.List.shuffle` and `Random.Array.shuffle`.### 3.1.0
* Add `sequence` and `traverse` functions
* Improve the performance of `Random.List.shuffle` and `Random.Array.shuffle`, especially on long lists/arrays.### 3.0.0
* Update for Elm 0.19, including switching to `elm/random`.
* Remove `Color` module.
* Rename `Random.Date.day` to `Random.Date.weekday`.
* Remove many trivial functions in `Random.Date`.
* Add `Random.Extra.bool`.
* Remove `Random.Extra.constant`; it's present in the official library.
* Change the signatures of `Random.Extra.choices` and `Random.Extra.frequency` to require an element and a list, avoid the issue of an empty list.### 2.0.0
* Update dependencies for Elm 0.18.
* Remove `flatMap` as core's `andThen` is identical.
* Rename `flatMapN` to `andThenN`, for similar reasons.
* Rename `together` to `combine`; see #1.
* Change signature of `Random.Extra.Float.normal`; see #2.
* Add `Random.Extra.List` module; see #4.