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.
appFromMaybe :: FromMaybe b -> Maybe b -> bfoldl Control.Foldl.NonEmpty No documentation available.
indexEndMaybe :: ShortText -> Int -> Maybe Chartext-short Data.Text.Short Lookup i-th code-point from the end of ShortText. Returns Nothing if out of bounds.
indexEndMaybe (singleton c) 0 == Just c
indexEndMaybe t 0 == fmap snd (unsnoc t)
indexEndMaybe mempty i == Nothing
indexMaybe :: ShortText -> Int -> Maybe Chartext-short Data.Text.Short Lookup i-th code-point in ShortText. Returns Nothing if out of bounds.
indexMaybe (singleton c) 0 == Just c
indexMaybe t 0 == fmap fst (uncons t)
indexMaybe mempty i == Nothing
-
haskell-src-meta Language.Haskell.Meta.Syntax.Translate No documentation available.
toMaybeKind :: ToMaybeKind a => a -> Maybe Kindhaskell-src-meta Language.Haskell.Meta.Syntax.Translate No documentation available.
intMapMaybe :: Int -> T (IntMap elem) (Maybe elem)data-accessor Data.Accessor.Container No documentation available.
mapMaybe :: Ord key => key -> T (Map key elem) (Maybe elem)data-accessor Data.Accessor.Container Treats a finite map like an infinite map, where all undefined elements are Nothing and defined elements are Just.
bigNatToWordMaybe# :: BigNat# -> (# (# #) | Word# #)ghc-bignum GHC.Num.BigNat Convert a BigNat into a Word# if it fits
naturalToWordMaybe# :: Natural -> (# (# #) | Word# #)ghc-bignum GHC.Num.Natural Try downcasting Natural to Word value. Returns (##) if value doesn't fit in Word.
-
ghc-bignum GHC.Num.WordArray Create a new WordArray# of the given size (*in Word#*), apply the action to it. If the action returns true#, trim its most significant zeroes, then return it frozen. Otherwise, return ().