Hoogle Search
Within LTS Haskell 24.42 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
allEqual :: Eq a => [a] -> Boollist-predicate Data.List.Predicate O(n). Whether the elements are all equal.
>>> allEqual [1..] False >>> allEqual [3, 3, 3, 3] True >>> allEqual [] True >>> allEqual [1] True
allEqualBy :: (a -> a -> Bool) -> [a] -> Boollist-predicate Data.List.Predicate O(n). Like allEqual, with a custom equality test.
>>> allEqualBy ((==) `on` (`mod` 10)) [3, 13, 23] True >>> allEqualBy ((==) `on` (`mod` 10)) [3, 13, 24] False
allUnique :: Ord a => [a] -> Boollist-predicate Data.List.Predicate O(n log(n)). Whether the elements are all unique.
>>> allUnique [1, 2, 5, 7] True >>> allUnique [1, 2, 5, 2] False >>> allUnique [] True >>> allUnique [1] True
allUniqueBy :: (a -> a -> Ordering) -> [a] -> Boollist-predicate Data.List.Predicate O(n log(n)). Like allUnique, with a custom comparison test.
>>> allUniqueBy (comparing head) ["apple", "bow", "cat"] True >>> allUniqueBy (comparing head) ["apple", "bow", "ant"] False
allOp :: Cluster -> Request -> IO [(Server, Response)]memcache Database.Memcache.Cluster Run a Memcached operation against all servers in the cluster, handling any failures that occur, retrying the specified number of times.
allOp' :: Cluster -> (Server -> IO a) -> IO [(Server, a)]memcache Database.Memcache.Cluster Run a Memcached operation against all servers in the cluster, handling any failures that occur, retrying the specified number of times. Similar to anyOp but allows more flexible interaction with the Server than a single request and response.
allowReorder_ :: MisoString -> Attribute actionmiso Miso.Svg https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/allowReorder
allowReorder_ :: MisoString -> Attribute actionmiso Miso.Svg.Attribute https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/allowReorder
allExn :: forall (m :: Type -> Type) . MonadException m => Exn m (Exc m)monadology Control.Monad.Ology.Data.Exn No documentation available.
allowRootDirInstall :: Bool -> Action ()nsis Development.NSIS No documentation available.