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.

  1. allEqual :: Eq a => [a] -> Bool

    list-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
    

  2. allEqualBy :: (a -> a -> Bool) -> [a] -> Bool

    list-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
    

  3. allUnique :: Ord a => [a] -> Bool

    list-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
    

  4. allUniqueBy :: (a -> a -> Ordering) -> [a] -> Bool

    list-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
    

  5. 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.

  6. 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.

  7. allowReorder_ :: MisoString -> Attribute action

    miso Miso.Svg

    https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/allowReorder

  8. allowReorder_ :: MisoString -> Attribute action

    miso Miso.Svg.Attribute

    https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/allowReorder

  9. allExn :: forall (m :: Type -> Type) . MonadException m => Exn m (Exc m)

    monadology Control.Monad.Ology.Data.Exn

    No documentation available.

  10. allowRootDirInstall :: Bool -> Action ()

    nsis Development.NSIS

    No documentation available.

Page 138 of many | Previous | Next