Hoogle Search

Within LTS Haskell 24.39 (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. hsMaybe :: Maybe HsExpr -> HsExpr

    beam-migrate Database.Beam.Haskell.Syntax

    No documentation available.

  8. beamDeserializeMaybe :: Typeable a => BeamDeserializers be -> Maybe Value -> Parser (Maybe a)

    beam-migrate Database.Beam.Migrate.Serialization

    Helper function to deserialize data from a Maybe Value.

    beamDeserializeMaybe _ Nothing = pure Nothing
    beamDeserializeMaybe d (Just v) = Just $ beamDeserialize d v
    

  9. predMaybe :: BinP -> Maybe BinP

    bin Data.BinP

    No documentation available.

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

Page 263 of many | Previous | Next