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.

  1. NumericalStatusMaybe :: NumericalStatus

    ShellCheck ShellCheck.CFGAnalysis

    No documentation available.

  2. variableMayBeAssignedInteger :: ProgramState -> String -> Maybe Bool

    ShellCheck ShellCheck.CFGAnalysis

    No documentation available.

  3. variableMayBeDeclaredInteger :: ProgramState -> String -> Maybe Bool

    ShellCheck ShellCheck.CFGAnalysis

    No documentation available.

  4. parseMaybe :: Decoder a -> Value -> Maybe a

    aeson-combinators Data.Aeson.Combinators.Decode

    Run decoder over Value. Returns Nothing in case of failure

  5. readMaybeECG :: Int -> String -> Maybe EncodedCnstrs

    aftovolio 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.

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

    aftovolio Aftovolio.General.Base

    No documentation available.

  7. 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
    

  8. 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
    

  9. 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.

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

    asn1-parse Data.ASN1.Parse

    get next element from the stream maybe

Page 267 of many | Previous | Next