ac01c7da61d3b4191170a9d6cb5b00c60449fc13a7fb80a620a1215ba635d6bb

Download raw

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

Size: 1066

Preview (limited to 512 bytes)

"-- | Benchmarking utilities. For example, functions for generating\n-- random 'ByteString's.\nmodule Util.ByteString where\n\nimport qualified Data.ByteString as S\nimport qualified Data.ByteString.Char8 as C\n\nimport Util.String as String\n\n-- | Generate a number of fixed length 'ByteString's where the content\n-- of the strings are letters in ascending order.\nasc :: Int -- ^ Length of each string\n -> Int -- ^ Number of strings\n -> [S.ByteString]\nasc strlen num = map C.pack $ String.asc strlen num\n\n-- | G"


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