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.

  1. findJust :: (a -> Bool) -> [a] -> a

    hledger Hledger.Cli.Script

    findJust op = fromJust . find op
    

  2. findJustDef :: a -> (a -> Bool) -> [a] -> a

    hledger Hledger.Cli.Script

    No documentation available.

  3. findJustNote :: Partial => String -> (a -> Bool) -> [a] -> a

    hledger Hledger.Cli.Script

    No documentation available.

  4. fmtAdjust :: FieldFormat -> Maybe FormatAdjustment

    hledger Hledger.Cli.Script

    Kind of filling or padding to be done.

  5. fromJustDef :: a -> Maybe a -> a

    hledger 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.

  6. fromJustNote :: Partial => String -> Maybe a -> a

    hledger Hledger.Cli.Script

    No documentation available.

  7. lookupJust :: (Eq a, Partial) => a -> [(a, b)] -> b

    hledger Hledger.Cli.Script

    lookupJust key = fromJust . lookup key
    

  8. lookupJustDef :: Eq a => b -> a -> [(a, b)] -> b

    hledger Hledger.Cli.Script

    No documentation available.

  9. lookupJustNote :: (Partial, Eq a) => String -> a -> [(a, b)] -> b

    hledger Hledger.Cli.Script

    No documentation available.

  10. adjust :: (Ord k, MonoidNull v) => (v -> v) -> k -> MonoidMap k v -> MonoidMap k v

    monoidmap 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
    

Page 67 of many | Previous | Next