Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
findJust :: (a -> Bool) -> [a] -> ahledger Hledger.Cli.Script findJust op = fromJust . find op
findJustDef :: a -> (a -> Bool) -> [a] -> ahledger Hledger.Cli.Script No documentation available.
findJustNote :: Partial => String -> (a -> Bool) -> [a] -> ahledger Hledger.Cli.Script No documentation available.
fmtAdjust :: FieldFormat -> Maybe FormatAdjustmenthledger Hledger.Cli.Script Kind of filling or padding to be done.
fromJustDef :: a -> Maybe a -> ahledger Hledger.Cli.Script An alternative name for fromMaybe, to fit the naming scheme of this package. Generally using fromMaybe directly would be considered better style.
fromJustNote :: Partial => String -> Maybe a -> ahledger Hledger.Cli.Script No documentation available.
lookupJust :: (Eq a, Partial) => a -> [(a, b)] -> bhledger Hledger.Cli.Script lookupJust key = fromJust . lookup key
lookupJustDef :: Eq a => b -> a -> [(a, b)] -> bhledger Hledger.Cli.Script No documentation available.
lookupJustNote :: (Partial, Eq a) => String -> a -> [(a, b)] -> bhledger Hledger.Cli.Script No documentation available.
adjust :: (Ord k, MonoidNull v) => (v -> v) -> k -> MonoidMap k v -> MonoidMap k vmonoidmap Data.MonoidMap Adjusts the value associated with the given key. Satisfies the following property:
adjust f k m == set k (f (get k m)) m