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.

  1. clearFromCursorToScreenBeginningCode :: String

    ansi-terminal System.Console.ANSI

    No documentation available.

  2. clearFromCursorToScreenEnd :: IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

  3. clearFromCursorToScreenEndCode :: String

    ansi-terminal System.Console.ANSI

    No documentation available.

  4. hClearFromCursorToLineBeginning :: Handle -> IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

  5. hClearFromCursorToLineEnd :: Handle -> IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

  6. hClearFromCursorToScreenBeginning :: Handle -> IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

  7. hClearFromCursorToScreenEnd :: Handle -> IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

  8. 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)
    

  9. 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"]]
    

  10. 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"]]
    

Page 103 of many | Previous | Next