Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. _schemaAnyOf :: Schema -> Maybe [Referenced Schema]

    openapi3 Data.OpenApi.Internal

    No documentation available.

  2. class HasAnyOf s a | s -> a

    openapi3 Data.OpenApi.Lens

    No documentation available.

  3. many :: Alternative f => f a -> f [a]

    protolude Protolude

    Zero or more.

    Examples

    >>> many (putStr "la")
    lalalalalalalalala... * goes on forever *
    
    >>> many Nothing
    Just []
    
    >>> take 5 <$> many (Just 1)
    * hangs forever *
    
    Note that this function can be used with Parsers based on Applicatives. In that case many parser will attempt to parse parser zero or more times until it fails.

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

    protolude Protolude

    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.

  5. waitAnyCancel :: [Async a] -> IO (Async a, a)

    protolude Protolude

    Like waitAny, but also cancels the other asynchronous operations as soon as one has completed.

  6. waitAnyCatch :: [Async a] -> IO (Async a, Either SomeException a)

    protolude Protolude

    Wait for any of the supplied asynchronous operations to complete. The value returned is a pair of the Async that completed, and the result that would be returned by wait on that Async. 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.

  7. waitAnyCatchCancel :: [Async a] -> IO (Async a, Either SomeException a)

    protolude Protolude

    Like waitAnyCatch, but also cancels the other asynchronous operations as soon as one has completed.

  8. doesNotUseAnyOf :: Name -> [Name] -> Obligation

    tasty-inspection-testing Test.Tasty.Inspection

    Declare that given entities do not occur in a function’s implementation.

  9. DAnyclassStrategy :: DDerivStrategy

    th-desugar Language.Haskell.TH.Desugar

    -XDeriveAnyClass
    

  10. expectAny :: (Foldable f, MonadBaseControl IO m, HasCallStack) => (a -> m Bool) -> f a -> m ()

    webdriver Test.WebDriver.Commands.Wait

    Apply a monadic predicate to every element in a list, and expect that at least one succeeds.

Page 143 of many | Previous | Next