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.
readPEMaybe :: PhoneticElement a => String -> Maybe aaftovolio Aftovolio.General.Base No documentation available.
fromIntMaybe :: Int -> Maybe Charascii-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
fromWord8Maybe :: Word8 -> Maybe Charascii-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
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.
getNextMaybe :: (ASN1 -> Maybe a) -> ParseASN1 (Maybe a)asn1-parse Data.ASN1.Parse get next element from the stream maybe
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.
predMaybe :: BinP -> Maybe BinPbin Data.BinP No documentation available.
-
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.
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.
unMaybeNA :: MaybeNA a -> Maybe abloodhound Database.Bloodhound.Common.Types No documentation available.