Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

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

    dhall Dhall.Set

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

  2. 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]
    

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

    express Data.Express.Utils.List

    Like nubSort but allows providing a function to compare values.

  4. AnotherCursorType :: Int -> CursorType

    gi-gdk3 GI.Gdk.Enums

    Catch-all for unknown values

  5. data CursorType

    gi-gdk3 GI.Gdk.Enums

    Predefined cursors. Note that these IDs are directly taken from the X cursor font, and many of these cursors are either not useful, or are not available on other platforms. The recommended way to create cursors is to use cursorNewFromName.

  6. CursorTypeArrow :: CursorType

    gi-gdk3 GI.Gdk.Enums

    No documentation available.

  7. CursorTypeBasedArrowDown :: CursorType

    gi-gdk3 GI.Gdk.Enums

    No documentation available.

  8. CursorTypeBasedArrowUp :: CursorType

    gi-gdk3 GI.Gdk.Enums

    No documentation available.

  9. CursorTypeBlankCursor :: CursorType

    gi-gdk3 GI.Gdk.Enums

    Blank cursor. Since 2.16

  10. CursorTypeBoat :: CursorType

    gi-gdk3 GI.Gdk.Enums

    No documentation available.

Page 116 of many | Previous | Next