File: Random.hs

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

{- |
Module       :  Control.Monad.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)

This module is provided for backwards compatibility, and simply
re-exports "Control.Monad.Random.Lazy".
-}

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

import           Control.Monad.Random.Lazy