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. xor8LazyByteString :: Word8 -> ByteString -> ByteString

    xor Data.XOR

    Apply 8-bit XOR mask to each octet of a lazy ByteString. See also xor8StrictByteString

  2. xor8ShortByteString :: Word8 -> ShortByteString -> ShortByteString

    xor Data.XOR

    Apply 8-bit XOR mask to each octet of a ShortByteString. See also xor8StrictByteString

  3. xor8StrictByteString :: Word8 -> ByteString -> ByteString

    xor Data.XOR

    Apply 8-bit XOR mask to each octet of a ByteString.

    >>> xor8StrictByteString 0x20 "Hello"
    "hELLO"
    
    This function is a faster implementation of the semantically equivalent function shown below:
    xor8StrictByteString'ref :: Word8 -> BS.ByteString -> BS.ByteString
    xor8StrictByteString'ref 0    = id
    xor8StrictByteString'ref msk0 = BS.map (xor msk0)
    

  4. parseByteString :: Value a -> ByteString -> Either Text a

    yaml-unscrambler YamlUnscrambler

    Run a value parser on strict bytestring.

  5. ZipDataByteString :: ByteString -> ZipData (m :: Type -> Type)

    zip-stream Codec.Archive.Zip.Conduit.Types

    A known ByteString, which will be fully evaluated (not streamed)

  6. ZipDataByteString :: ByteString -> ZipData (m :: Type -> Type)

    zip-stream Codec.Archive.Zip.Conduit.Zip

    A known ByteString, which will be fully evaluated (not streamed)

  7. hashByteString :: ByteString -> Hash

    Agda Agda.Utils.Hash

    No documentation available.

  8. uniformByteStringM :: HasStatefulGen a m => Int -> m ByteString

    ImpSpec Test.ImpSpec.Random

    No documentation available.

  9. uniformShortByteStringM :: HasStatefulGen a m => Int -> m ShortByteString

    ImpSpec Test.ImpSpec.Random

    No documentation available.

  10. pathFromByteString :: Fractional n => ByteString -> Either String [PathCommand n]

    SVGFonts Graphics.SVGFonts.ReadPath

    No documentation available.

Page 85 of many | Previous | Next