Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/purescript/purescript-gen
A type class for random generator implementations.
https://github.com/purescript/purescript-gen
Last synced: 3 months ago
JSON representation
A type class for random generator implementations.
- Host: GitHub
- URL: https://github.com/purescript/purescript-gen
- Owner: purescript
- License: bsd-3-clause
- Created: 2017-04-01T15:57:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-04-27T21:08:40.000Z (over 2 years ago)
- Last Synced: 2024-05-22T16:07:41.397Z (6 months ago)
- Language: PureScript
- Homepage:
- Size: 48.8 KB
- Stars: 8
- Watchers: 5
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-purescript - gen - A type class for random generator implementations. (Random)
README
# purescript-gen
[![Latest release](http://img.shields.io/github/release/purescript/purescript-gen.svg)](https://github.com/purescript/purescript-gen/releases)
[![Build status](https://github.com/purescript/purescript-gen/workflows/CI/badge.svg?branch=master)](https://github.com/purescript/purescript-gen/actions?query=workflow%3ACI+branch%3Amaster)
[![Pursuit](https://pursuit.purescript.org/packages/purescript-gen/badge)](https://pursuit.purescript.org/packages/purescript-gen)A type class for random generator implementations.
Note that this library only provides the `MonadGen` type class; it does not provide any implementations of it. The intention is that libraries may depend on `purescript-gen` in order to provide functions for random generation of any data types they define while also keeping their dependency footprints minimal, and not tying users to any specific random generation library (since any library implementing random generation of values should be able to implement the `MonadGen` interface).
## Installation
```
spago install gen
```## Documentation
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-gen).