FsRandom icon indicating copy to clipboard operation
FsRandom copied to clipboard

A purely-functional random number generator framework designed for F#

Results 15 FsRandom issues
Sort by recently updated
recently updated
newest added

Utility.createRandomState makes 128-bit random seed using GUID. GUID generated by `Guid.NewGuid()` contains fixed bits (version info) and does not have fully 128-bit randomness.

see https://github.com/fsprojects/FsProjectsAdmin/issues/17

To save and load the random state easily.

enhancement

Using `ReflectedDefinition` attribute and traversing generator functions. ``` fsharp [] let generator = random { // random process } // optimize : Expr let optimizedGenerator = optimize ```

enhancement
generator function

generator function

generator function

generator function

generator function

Computation expressions like `draw ``[0, 1)`` into x`?