fused-effects-mwc-random alternatives and similar packages
Based on the "fused" category.
Alternatively, view fused-effects-mwc-random alternatives based on common mentions on social networks and blogs.
-
fused-effects
A fast, flexible, fused effect system for Haskell -
fused-effects-exceptions
Handle exceptions thrown in IO with fused-effects. -
fused-effects-resumable
Resumable exceptions for the fused-effects ecosystem. -
fused-effects-random
Random number generation for fused-effects. -
fused-effects-optics
Optics combinators for fused-effects. -
fused-effects-squeal
๐ท๐๏ธ A fused-effects adapter for squeal-postgresql. -
fused-effects-th
Template Haskell helpers for fused-effects.
Access the most powerful time series database as a service
Do you think we are missing an alternative of fused-effects-mwc-random or a related project?
Popular Comparisons
README
fused-effects-mwc-random
High-quality uniformly-distributed pseudorandom number generation as an effect.
This library provides a Random
effect that piggybacks atop the mwc-random
package, which produces high-quality random numbers in efficient time. A carrier type (Control.Carrier.Random.Lifted
) encapsulates generator state and provides a convenient API to invoke system random number generation or pass a predefined seed. The mwc-random
package is finely tuned; as such, this package should be an industrial-strength source of random numbers, suitable for tight loops.
Please note that the MWC-256 algorithm that underlies mwc-random
is not cryptographically secure and should not be used for such purposes. Crypto code should use cryptonite
, as I'm sure you already know.
For more advanced users, there exists also a module (Control.Carrier.Random.Instances
) that provides the orphan instances required to use most fused-effect
stacks with the PrimMonad
machinery that powers mwc-random
. This module is most useful when porting monad transformer stacks that already use the mwc-random
API, or if you need to drop into the native mwc-random
API.
*Note that all licence references and agreements mentioned in the fused-effects-mwc-random README section above
are relevant to that project's source code only.