97fdee1760bc8123e161a53945f49260b65dfd15148415f92d62bea51204cf49

Download raw

Created: 2023-12-19 03:40:10.302489 UTC

Size: 12138

Preview (limited to 512 bytes)

"-- |\n-- /SplitMix/ is a splittable pseudorandom number generator (PRNG) that is quite fast.\n--\n-- This is 32bit variant (original one is 32 bit).\n--\n-- You __really don't want to use this one__.\n--\n-- Note: This module supports all GHCs since GHC-7.0.4,\n-- but GHC-7.0 and GHC-7.2 have slow implementation, as there\n-- are no native 'popCount'.\n--\n{-# LANGUAGE CPP #-}\n#if __GLASGOW_HASKELL__ >= 702\n{-# LANGUAGE Trustworthy #-}\n#endif\nmodule System.Random.SplitMix32 (\n SMGen,\n nextWord32,\n "


Casa is a service provided by the Haskell Foundation │ Originally developed by FP Complete