Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. addrToAny# :: Addr# -> (# a_levpoly #)

    ghc-prim GHC.PrimopWrappers

    No documentation available.

  2. compactContainsAny# :: a -> State# RealWorld -> (# State# RealWorld, Int# #)

    ghc-prim GHC.PrimopWrappers

    No documentation available.

  3. Many :: Multiplicity

    ghc-prim GHC.Types

    No documentation available.

  4. iany :: FoldableWithIndex i f => (i -> a -> Bool) -> f a -> Bool

    lens Control.Lens.Combinators

    Return whether or not any element in a container satisfies a predicate, with access to the index i. When you don't need access to the index then any is more flexible in what it accepts.

    anyiany . const
    

  5. ianyOf :: IndexedGetting i Any s a -> (i -> a -> Bool) -> s -> Bool

    lens Control.Lens.Combinators

    Return whether or not any element viewed through an IndexedFold or IndexedTraversal satisfy a predicate, with access to the i. When you don't need access to the index then anyOf is more flexible in what it accepts.

    anyOf l ≡ ianyOf l . const
    
    ianyOf :: IndexedGetter i s a     -> (i -> a -> Bool) -> s -> Bool
    ianyOf :: IndexedFold i s a       -> (i -> a -> Bool) -> s -> Bool
    ianyOf :: IndexedLens' i s a      -> (i -> a -> Bool) -> s -> Bool
    ianyOf :: IndexedTraversal' i s a -> (i -> a -> Bool) -> s -> Bool
    

  6. ianyOf :: IndexedGetting i Any s a -> (i -> a -> Bool) -> s -> Bool

    lens Control.Lens.Fold

    Return whether or not any element viewed through an IndexedFold or IndexedTraversal satisfy a predicate, with access to the i. When you don't need access to the index then anyOf is more flexible in what it accepts.

    anyOf l ≡ ianyOf l . const
    
    ianyOf :: IndexedGetter i s a     -> (i -> a -> Bool) -> s -> Bool
    ianyOf :: IndexedFold i s a       -> (i -> a -> Bool) -> s -> Bool
    ianyOf :: IndexedLens' i s a      -> (i -> a -> Bool) -> s -> Bool
    ianyOf :: IndexedTraversal' i s a -> (i -> a -> Bool) -> s -> Bool
    

  7. iany :: FoldableWithIndex i f => (i -> a -> Bool) -> f a -> Bool

    lens Control.Lens.Indexed

    Return whether or not any element in a container satisfies a predicate, with access to the index i. When you don't need access to the index then any is more flexible in what it accepts.

    anyiany . const
    

  8. _AnyclassStrategy :: Prism' DerivStrategy ()

    lens Language.Haskell.TH.Lens

    No documentation available.

  9. cancelMany :: [Async a] -> IO ()

    async Control.Concurrent.Async

    Cancel multiple asynchronous actions by throwing the AsyncCancelled exception to each of them in turn, then waiting for all the Async threads to complete.

  10. waitAny :: [Async a] -> IO (Async a, a)

    async Control.Concurrent.Async

    Wait for any of the supplied Asyncs to complete. If the first to complete throws an exception, then that exception is re-thrown by waitAny. The input list must be non-empty. If multiple Asyncs complete or have completed, then the value returned corresponds to the first completed Async in the list.

Page 102 of many | Previous | Next