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.
MkDirectAbstractDeclaratorOptJust :: DirectAbstractDeclarator -> DirectAbstractDeclaratorOptogma-language-c Language.C.AbsC No documentation available.
MkExpressionOptJust :: Expression -> ExpressionOptogma-language-c Language.C.AbsC No documentation available.
MkIdentifierListOptJust :: IdentifierList -> IdentifierListOptogma-language-c Language.C.AbsC No documentation available.
MkIdentifierOptJust :: Identifier -> IdentifierOptogma-language-c Language.C.AbsC No documentation available.
MkInitDeclarationListOptJust :: [InitDeclarator] -> InitDeclarationListOptogma-language-c Language.C.AbsC No documentation available.
MkPointerOptJust :: Pointer -> PointerOptogma-language-c Language.C.AbsC No documentation available.
MkTypeQualifierListOptJust :: TypeQualifierList -> TypeQualifierListOptogma-language-c Language.C.AbsC No documentation available.
onJust :: Maybe a -> b -> (a -> b) -> boverhang Overhang Hang on the Just case of a Maybe.
onJust m d j = maybe d j m
adjust :: forall s k a . Hashable k => (a -> a) -> Key s k -> HashMap s k a -> HashMap s k arefined-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'
adjust' :: forall s k a . Hashable k => (a -> a) -> k -> HashMap s k a -> HashMap s k arefined-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.