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. catchAnyDeep :: (NFData a, MonadBaseControl IO m) => m a -> (SomeException -> m a) -> m a

    enclosed-exceptions Control.Exception.Enclosed

    An extension to catchAny which ensures that the return value is fully evaluated. See tryAnyDeep. Since 0.5.9

  2. handleAny :: MonadBaseControl IO m => (SomeException -> m a) -> m a -> m a

    enclosed-exceptions Control.Exception.Enclosed

    A version of handle which is specialized for any exception. This simplifies usage as no explicit type signatures are necessary. Note that since version 0.5.9, this function now has proper support for asynchronous exceptions, by only catching exceptions generated by the internal (enclosed) action. Since 0.5.6

  3. handleAnyDeep :: (NFData a, MonadBaseControl IO m) => (SomeException -> m a) -> m a -> m a

    enclosed-exceptions Control.Exception.Enclosed

    flip catchAnyDeep
    
    Since 0.5.6

  4. tryAny :: MonadBaseControl IO m => m a -> m (Either SomeException a)

    enclosed-exceptions Control.Exception.Enclosed

    A version of try which is specialized for any exception. This simplifies usage as no explicit type signatures are necessary. Note that since version 0.5.9, this function now has proper support for asynchronous exceptions, by only catching exceptions generated by the internal (enclosed) action. Since 0.5.6

  5. tryAnyDeep :: (NFData a, MonadBaseControl IO m) => m a -> m (Either SomeException a)

    enclosed-exceptions Control.Exception.Enclosed

    an extension to tryany which ensures that the return value is fully evaluated. in other words, if you get a right response here, you can be confident that using it will not result in another exception. Since 0.5.9

  6. pickAny :: forall a (m :: Type -> Type) . (Monad m, Random a) => FakeT m a

    fakedata Faker.Combinators

    Generates a random element over the natural range of a.

    λ> import Data.Word
    λ> item :: forall a m. Word8 <- generate pickAny
    λ> item
    57
    

  7. module Faker.Company

    No documentation available.

  8. hobbitThorinsCompany :: Fake Text

    fakedata Faker.Fantasy.Tolkien

    No documentation available.

  9. Company :: SourceData

    fakedata Faker.Internal.Types

    No documentation available.

  10. company :: Fake Text

    fakedata Faker.Space

    No documentation available.

Page 192 of many | Previous | Next