Hoogle Search

Within LTS Haskell 24.43 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. genShortByteString :: RandomGen g => Int -> g -> (ShortByteString, g)

    Yampa FRP.Yampa

    genShortByteString n g returns a ShortByteString of length n filled with pseudo-random bytes.

  2. genShortByteString :: RandomGen g => Int -> g -> (ShortByteString, g)

    Yampa FRP.Yampa.Random

    genShortByteString n g returns a ShortByteString of length n filled with pseudo-random bytes.

  3. module Text.Appar.LazyByteString

    Simple Applicative parser whose input is lazy ByteString. The usage is the same as parsec. Parsec 3 provides features which Parsec 2 does not provide:

    But Haskell Platform includes Parsec 2, not Parsec 3. Installing Parsec 3 to Haskell Platform environment makes it mess. So, this library was implemented.

  4. package base64-bytestring-type

    A newtype around ByteString, for base64 encoding A newtype around ByteString, for base64 encoding. Strict and lazy, normal and url alphabet variants.

  5. getByteString64 :: ByteString64 -> ByteString

    base64-bytestring-type Data.ByteString.Base64.Lazy.Type

    Unwrap ByteString from ByteString64. Essentially coerce.

  6. getEncodedByteString64 :: ByteString64 -> ByteString

    base64-bytestring-type Data.ByteString.Base64.Lazy.Type

    Get base64 encode bytestring

    >>> getEncodedByteString64 "foobar"
    "Zm9vYmFy"
    
    >>> getEncodedByteString64 "aa\191"
    "YWG/"
    

  7. makeByteString64 :: ByteString -> ByteString64

    base64-bytestring-type Data.ByteString.Base64.Lazy.Type

    Wrap ByteString into ByteString64. Essentially coerce.

  8. getByteString64 :: ByteString64 -> ByteString

    base64-bytestring-type Data.ByteString.Base64.Type

    Unwrap ByteString from ByteString64. Essentially coerce.

  9. getEncodedByteString64 :: ByteString64 -> ByteString

    base64-bytestring-type Data.ByteString.Base64.Type

    Get base64 encode bytestring

    >>> getEncodedByteString64 "foobar"
    "Zm9vYmFy"
    
    >>> getEncodedByteString64 "aa\191"
    "YWG/"
    

  10. makeByteString64 :: ByteString -> ByteString64

    base64-bytestring-type Data.ByteString.Base64.Type

    Wrap ByteString into ByteString64. Essentially coerce. Wrap ByteString into ByteString64. Essentially coerce.

Page 86 of many | Previous | Next