-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from haskell/lehins/SeedGen
Implementation of `SeedGen`
- Loading branch information
Showing
11 changed files
with
597 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
-- | | ||
-- Module : System.Random.GFinite | ||
-- Copyright : (c) Andrew Lelechenko 2020 | ||
-- License : BSD-style (see the file LICENSE in the 'random' repository) | ||
-- Maintainer : [email protected] | ||
-- | ||
|
||
{-# LANGUAGE DefaultSignatures #-} | ||
{-# LANGUAGE FlexibleContexts #-} | ||
{-# LANGUAGE LambdaCase #-} | ||
{-# LANGUAGE MagicHash #-} | ||
{-# LANGUAGE ScopedTypeVariables #-} | ||
{-# LANGUAGE TypeOperators #-} | ||
|
||
-- | | ||
-- Module : System.Random.GFinite | ||
-- Copyright : (c) Andrew Lelechenko 2020 | ||
-- License : BSD-style (see the file LICENSE in the 'random' repository) | ||
-- Maintainer : [email protected] | ||
-- | ||
module System.Random.GFinite | ||
( Cardinality(..) | ||
, Finite(..) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.