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. data HsTupleSort

    ghc-lib-parser Language.Haskell.Syntax.Type

    Haskell Tuple Sort

  2. constructCursorTexture :: (IsCursor o, MonadIO m, IsTexture a) => a -> m (GValueConstruct o)

    gi-gdk4 GI.Gdk.Objects.Cursor

    Construct a GValueConstruct with valid value for the “texture” property. This is rarely needed directly, but it is used by new.

  3. getCursorTexture :: (MonadIO m, IsCursor o) => o -> m (Maybe Texture)

    gi-gdk4 GI.Gdk.Objects.Cursor

    Get the value of the “texture” property. When overloading is enabled, this is equivalent to

    get cursor #texture
    

  4. cursorToLL :: TermStr s => Capability s

    terminfo System.Console.Terminfo.Cursor

    No documentation available.

  5. censorText :: Text -> Text

    dhall Dhall.Core

    Utility used to censor Text by replacing all characters with a space

  6. isSorted :: Eq k => Map k v -> Bool

    dhall Dhall.Map

    Check if the keys of a Map are already sorted

    isSorted (sort m) = True
    
    >>> isSorted (fromList [("B",1),("A",2)])  -- Sortedness is based only on keys
    False
    
    >>> isSorted (fromList [("A",2),("B",1)])
    True
    

  7. _Sort :: Parser ()

    dhall Dhall.Parser.Token

    Parse the Sort built-in This corresponds to the Sort rule from the official grammar

  8. isSorted :: Ord a => Set a -> Bool

    dhall Dhall.Set

    >>> isSorted (fromList [2, 1])
    False
    
    >>> isSorted (fromList [1, 2])
    True
    

  9. nubSort :: Ord a => [a] -> [a]

    express Data.Express.Utils.List

    O(n log n). Sorts and remove repetitions. Equivalent to nub . sort.

    > nubSort [1,2,3]
    [1,2,3]
    > nubSort [3,2,1]
    [1,2,3]
    > nubSort [3,2,1,3,2,1]
    [1,2,3]
    > nubSort [3,3,1,1,2,2]
    [1,2,3]
    

  10. nubSortBy :: (a -> a -> Ordering) -> [a] -> [a]

    express Data.Express.Utils.List

    Like nubSort but allows providing a function to compare values.

Page 124 of many | Previous | Next