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.
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:
adjustMin :: (a -> a) -> Heap a -> Heap aheaps 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]
-
hledger Hledger.Cli.Script Whether to left-adjust or zero-pad a field. These are mutually exclusive, with LeftAdjust taking precedence.
LeftAdjust :: FormatAdjustmenthledger Hledger.Cli.Script No documentation available.
elemIndexJust :: (Partial, Eq a) => a -> [a] -> Inthledger Hledger.Cli.Script elemIndexJust op = fromJust . elemIndex op
elemIndexJustDef :: Eq a => Int -> a -> [a] -> Inthledger Hledger.Cli.Script No documentation available.
elemIndexJustNote :: (Partial, Eq a) => String -> a -> [a] -> Inthledger Hledger.Cli.Script No documentation available.
findIndexJust :: (a -> Bool) -> [a] -> Inthledger Hledger.Cli.Script findIndexJust op = fromJust . findIndex op
findIndexJustDef :: Int -> (a -> Bool) -> [a] -> Inthledger Hledger.Cli.Script No documentation available.
findIndexJustNote :: Partial => String -> (a -> Bool) -> [a] -> Inthledger Hledger.Cli.Script No documentation available.