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.
-
ghc-lib-parser Language.Haskell.Syntax.Type Haskell Tuple Sort
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.
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
cursorToLL :: TermStr s => Capability sterminfo System.Console.Terminfo.Cursor No documentation available.
-
dhall Dhall.Core Utility used to censor Text by replacing all characters with a space
isSorted :: Eq k => Map k v -> Booldhall 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-
dhall Dhall.Parser.Token Parse the Sort built-in This corresponds to the Sort rule from the official grammar
isSorted :: Ord a => Set a -> Booldhall Dhall.Set >>> isSorted (fromList [2, 1]) False >>> isSorted (fromList [1, 2]) True
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]
nubSortBy :: (a -> a -> Ordering) -> [a] -> [a]express Data.Express.Utils.List Like nubSort but allows providing a function to compare values.