Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. readPEMaybe :: PhoneticElement a => String -> Maybe a

    aftovolio Aftovolio.General.Base

    No documentation available.

  2. fromIntMaybe :: Int -> Maybe Char

    ascii-char ASCII.Char

    Returns Just the ASCII character corresponding to a numeric value between 0 and 127, or Nothing for numbers outside this range

    fromIntMaybe (-1) == Nothing
    fromIntMaybe 0 == Just Null
    fromIntMaybe 65 == Just CapitalLetterA
    fromIntMaybe 127 == Just Delete
    fromIntMaybe 128 == Nothing
    

  3. fromWord8Maybe :: Word8 -> Maybe Char

    ascii-char ASCII.Char

    Returns Just the ASCII character corresponding to a byte between 0 and 127, or Nothing for bytes above this range

    fromWord8Maybe 0 == Just Null
    fromWord8Maybe 65 == Just CapitalLetterA
    fromWord8Maybe 127 == Just Delete
    fromWord8Maybe 128 == Nothing
    

  4. getNextContainerMaybe :: ASN1ConstructionType -> ParseASN1 (Maybe [ASN1])

    asn1-parse Data.ASN1.Parse

    just like getNextContainer, except it doesn't throw an error if the container doesn't exists.

  5. getNextMaybe :: (ASN1 -> Maybe a) -> ParseASN1 (Maybe a)

    asn1-parse Data.ASN1.Parse

    get next element from the stream maybe

  6. onNextContainerMaybe :: ASN1ConstructionType -> ParseASN1 a -> ParseASN1 (Maybe a)

    asn1-parse Data.ASN1.Parse

    just like onNextContainer, except it doesn't throw an error if the container doesn't exists.

  7. predMaybe :: BinP -> Maybe BinP

    bin Data.BinP

    No documentation available.

  8. peekMaybe :: Get (Maybe Char)

    binary-parsers Data.Binary.Parser.Char8

    Match any char, to perform lookahead. Returns Nothing if end of input has been reached. Does not consume any input.

  9. peekMaybe :: Get (Maybe Word8)

    binary-parsers Data.Binary.Parser.Word8

    Match any byte, to perform lookahead. Returns Nothing if end of input has been reached. Does not consume any input.

  10. unMaybeNA :: MaybeNA a -> Maybe a

    bloodhound Database.Bloodhound.Common.Types

    No documentation available.

Page 263 of many | Previous | Next