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.

  1. FieldAttrMaybe :: FieldAttr

    persistent-redis Database.Persist.Redis

    The Maybe keyword goes after the type. This indicates that the column is nullable, and the generated Haskell code will have a Maybe type for it. Example:

    User
    name Text Maybe
    

  2. isFieldMaybe :: FieldDef -> Bool

    persistent-redis Database.Persist.Redis

    Check if the field is `Maybe a`

  3. psMaybe :: MonadReader BridgeData m => m PSType

    purescript-bridge Language.PureScript.Bridge.PSTypes

    Uses type parameters from haskType (bridged).

  4. lookUpVarMaybe :: Typeable a => Env -> Var a -> Maybe a

    quickcheck-dynamic Test.QuickCheck.StateModel

    No documentation available.

  5. suchThatMaybe :: MonadGen m => m a -> (a -> Bool) -> m (Maybe a)

    quickcheck-transformer Test.QuickCheck.GenT

    Tries to generate a value that satisfies a predicate.

  6. mapMaybe :: (a -> Maybe b) -> Patricia a -> Patricia b

    radix-tree Data.Patricia.Word.Lazy

    Apply a function to every value in the tree and create one out of Just values.

  7. mapMaybeWithKey :: (Word -> a -> Maybe b) -> Patricia a -> Patricia b

    radix-tree Data.Patricia.Word.Lazy

    Apply a function to every value in the tree and create a tree out of Just results.

  8. mapMaybe :: (a -> Maybe b) -> Patricia a -> Patricia b

    radix-tree Data.Patricia.Word.Strict

    Apply a function to every value in the tree and create one out of Just values. The Maybe is evaluated to WHNF.

  9. mapMaybeWithKey :: (Word -> a -> Maybe b) -> Patricia a -> Patricia b

    radix-tree Data.Patricia.Word.Strict

    Apply a function to every value in the tree and create a tree out of Just results. The Maybe is evaluated to WHNF.

  10. mapMaybe :: (a -> Maybe b) -> Radix1Tree a -> Radix1Tree b

    radix-tree Data.Radix1Tree.Word8.Lazy

    Apply a function to every value in the tree and create one out of Just values.

Page 282 of many | Previous | Next