Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
NumericalStatusMaybe :: NumericalStatusShellCheck ShellCheck.CFGAnalysis No documentation available.
variableMayBeAssignedInteger :: ProgramState -> String -> Maybe BoolShellCheck ShellCheck.CFGAnalysis No documentation available.
variableMayBeDeclaredInteger :: ProgramState -> String -> Maybe BoolShellCheck ShellCheck.CFGAnalysis No documentation available.
parseMaybe :: Decoder a -> Value -> Maybe aaeson-combinators Data.Aeson.Combinators.Decode readMaybeECG :: Int -> String -> Maybe EncodedCnstrsaftovolio Aftovolio.ConstraintsEncoded Inspired by the: https://hackage.haskell.org/package/base-4.14.0.0/docs/Data-Maybe.html Is provided here as a more general way to read the String into a EncodedCnstrs. It is up to user to check whether the parameters are in the correct form, the function does not do the full checking.
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