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. writeJustDirs :: AnchoredDirTree a -> IO (AnchoredDirTree a)

    directory-tree System.Directory.Tree

    writes the directory structure (not files) of a DirTree to the anchored directory. Returns a structure identical to the supplied tree with errors replaced by Failed constructors:

  2. adjustMin :: (a -> a) -> Heap a -> Heap a

    heaps Data.Heap

    O(log n). Adjust the minimum key in the heap and return the resulting heap.

    >>> adjustMin (+1) (fromList [1,2,3])
    fromList [2,2,3]
    

  3. data FormatAdjustment

    hledger Hledger.Cli.Script

    Whether to left-adjust or zero-pad a field. These are mutually exclusive, with LeftAdjust taking precedence.

  4. LeftAdjust :: FormatAdjustment

    hledger Hledger.Cli.Script

    No documentation available.

  5. elemIndexJust :: (Partial, Eq a) => a -> [a] -> Int

    hledger Hledger.Cli.Script

    elemIndexJust op = fromJust . elemIndex op
    

  6. elemIndexJustDef :: Eq a => Int -> a -> [a] -> Int

    hledger Hledger.Cli.Script

    No documentation available.

  7. elemIndexJustNote :: (Partial, Eq a) => String -> a -> [a] -> Int

    hledger Hledger.Cli.Script

    No documentation available.

  8. findIndexJust :: (a -> Bool) -> [a] -> Int

    hledger Hledger.Cli.Script

    findIndexJust op = fromJust . findIndex op
    

  9. findIndexJustDef :: Int -> (a -> Bool) -> [a] -> Int

    hledger Hledger.Cli.Script

    No documentation available.

  10. findIndexJustNote :: Partial => String -> (a -> Bool) -> [a] -> Int

    hledger Hledger.Cli.Script

    No documentation available.

Page 66 of many | Previous | Next