Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
clearFromCursorToScreenBeginningCode :: Stringansi-terminal System.Console.ANSI No documentation available.
clearFromCursorToScreenEnd :: IO ()ansi-terminal System.Console.ANSI No documentation available.
clearFromCursorToScreenEndCode :: Stringansi-terminal System.Console.ANSI No documentation available.
hClearFromCursorToLineBeginning :: Handle -> IO ()ansi-terminal System.Console.ANSI No documentation available.
hClearFromCursorToLineEnd :: Handle -> IO ()ansi-terminal System.Console.ANSI No documentation available.
hClearFromCursorToScreenBeginning :: Handle -> IO ()ansi-terminal System.Console.ANSI No documentation available.
hClearFromCursorToScreenEnd :: Handle -> IO ()ansi-terminal System.Console.ANSI No documentation available.
groupSort :: Ord k => [(k, v)] -> [(k, [v])]extra Data.List.Extra A combination of group and sort.
groupSort [(1,'t'),(3,'t'),(2,'e'),(2,'s')] == [(1,"t"),(2,"es"),(3,"t")] \xs -> map fst (groupSort xs) == sort (nub (map fst xs)) \xs -> concatMap snd (groupSort xs) == map snd (sortOn fst xs)
groupSortBy :: (a -> a -> Ordering) -> [a] -> [[a]]extra Data.List.Extra A combination of group and sort, using a predicate to compare on.
groupSortBy (compare `on` length) ["test","of","sized","item"] == [["of"],["test","item"],["sized"]]
groupSortOn :: Ord b => (a -> b) -> [a] -> [[a]]extra Data.List.Extra A combination of group and sort, using a part of the value to compare on.
groupSortOn length ["test","of","sized","item"] == [["of"],["test","item"],["sized"]]