• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bench/H23-Jun-2020-310292

bench-legacy/H23-Jun-2020-420281

src/System/H23-Jun-2020-2,335795

test/H23-Jun-2020-220176

test-legacy/H23-Jun-2020-266177

CHANGELOG.mdH A D23-Jun-20204.8 KiB10787

LICENSEH A D23-Jun-20202.9 KiB6447

README.mdH A D23-Jun-20201.7 KiB3422

Setup.hsH A D23-Jun-202061 53

random.cabalH A D03-May-20226 KiB195180

README.md

1# The Haskell Standard Library
2
3## Random Number Generation
4
5### Status
6
7| Language | Travis | Coveralls |
8|:--------:|:------:|:---------:|
9| ![GitHub top language](https://img.shields.io/github/languages/top/haskell/random.svg) | [![Build Status](https://secure.travis-ci.org/haskell/random.svg?master)](http://travis-ci.org/haskell/random) | [![Coverage Status](https://coveralls.io/repos/github/haskell/random/badge.svg?branch=master)](https://coveralls.io/github/haskell/random?branch=master)
10
11|      Package       | Hackage | Nightly | LTS |
12|:-------------------|:-------:|:-------:|:---:|
13|  [`random`](https://github.com/haskell/random)| [![Hackage](https://img.shields.io/hackage/v/random.svg)](https://hackage.haskell.org/package/random)| [![Nightly](https://www.stackage.org/package/random/badge/nightly)](https://www.stackage.org/nightly/package/random)| [![Nightly](https://www.stackage.org/package/random/badge/lts)](https://www.stackage.org/lts/package/random)
14
15### Description
16
17This library provides a basic interface for (splittable) pseudo-random number
18generators.
19
20The API documentation can be found here:
21
22> http://hackage.haskell.org/package/random/docs/System-Random.html
23
24An [older version][haskell98-version] of this library is included with GHC in
25the `haskell98` package. This newer version is included in the [Haskell
26Platform][haskell-platform].
27
28Please report bugs in the [GitHub issue tracker][issue-tracker] (no longer in
29the GHC trac).
30
31[haskell-platform]: http://www.haskell.org/platform/contents.html
32[haskell98-version]: https://downloads.haskell.org/~ghc/7.6.3/docs/html/libraries/haskell98/Random.html
33[issue-tracker]: https://github.com/haskell/random/issues
34