File: Random.hs

package info (click to toggle)
haskell-monadrandom 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 116 kB
  • sloc: haskell: 609; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 642 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{-# LANGUAGE Safe #-}

{- |
Module       :  Control.Monad.Trans.Random
Copyright    :  (c) Brent Yorgey 2016
License      :  BSD3 (see LICENSE)

Maintainer   :  byorgey@gmail.com
Stability    :  experimental
Portability  :  non-portable (multi-param classes, functional dependencies, undecidable instances)

Random monads, passing a random number generator through a computation.

This version is lazy; for a strict version, see
"Control.Monad.Trans.Random.Strict", which has the same interface.
-}

module Control.Monad.Trans.Random
    ( module Control.Monad.Trans.Random.Lazy,
    ) where

import           Control.Monad.Trans.Random.Lazy