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. MkDirectAbstractDeclaratorOptJust :: DirectAbstractDeclarator -> DirectAbstractDeclaratorOpt

    ogma-language-c Language.C.AbsC

    No documentation available.

  2. MkExpressionOptJust :: Expression -> ExpressionOpt

    ogma-language-c Language.C.AbsC

    No documentation available.

  3. MkIdentifierListOptJust :: IdentifierList -> IdentifierListOpt

    ogma-language-c Language.C.AbsC

    No documentation available.

  4. MkIdentifierOptJust :: Identifier -> IdentifierOpt

    ogma-language-c Language.C.AbsC

    No documentation available.

  5. MkInitDeclarationListOptJust :: [InitDeclarator] -> InitDeclarationListOpt

    ogma-language-c Language.C.AbsC

    No documentation available.

  6. MkPointerOptJust :: Pointer -> PointerOpt

    ogma-language-c Language.C.AbsC

    No documentation available.

  7. MkTypeQualifierListOptJust :: TypeQualifierList -> TypeQualifierListOpt

    ogma-language-c Language.C.AbsC

    No documentation available.

  8. onJust :: Maybe a -> b -> (a -> b) -> b

    overhang Overhang

    Hang on the Just case of a Maybe.

    onJust m d j = maybe d j m
    

  9. adjust :: forall s k a . Hashable k => (a -> a) -> Key s k -> HashMap s k a -> HashMap s k a

    refined-containers Data.HashMap.Refined

    Update the value at a specific key known the be in the map using the given function. The set of keys remains the same.

    reinsert k v = 'adjust (const v) k'
    

  10. adjust' :: forall s k a . Hashable k => (a -> a) -> k -> HashMap s k a -> HashMap s k a

    refined-containers Data.HashMap.Refined

    If the given key is in the map, update the value at that key using the given function. In any case, the set of keys remains the same.

Page 186 of many | Previous | Next