Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

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

  1. isOrderedListMarker :: Text -> Bool

    pandoc Text.Pandoc.Writers.Shared

    No documentation available.

  2. runWriterSTMAction :: forall o (r :: EffectRow) a . (Member (Final IO) r, Monoid o) => (o -> STM ()) -> Sem (Writer o ': r) a -> Sem r a

    polysemy Polysemy.Internal.Writer

    A variant of runWriterTVar where an STM action is used instead of a TVar to commit tells.

  3. optIndividualTestModule :: CommandLineOptions a -> Maybe IndividualTestModule

    sandwich Test.Sandwich.Misc

    No documentation available.

  4. testModifyCookies :: (Cookies -> Cookies) -> YesodExample site ()

    yesod-test Yesod.Test

    Modify the current cookies with the given mapping function

  5. testModifySite :: YesodDispatch site => (site -> IO (site, Middleware)) -> YesodExample site ()

    yesod-test Yesod.Test

    Modifies the site (yedSite) of the test, and creates a new WAI app (yedApp) for it. yesod-test allows sending requests to your application to test that it handles them correctly. In rare cases, you may wish to modify that application in the middle of a test. This may be useful if you wish to, for example, test your application under a certain configuration, then change that configuration to see if your app responds differently.

    Examples

    post SendEmailR
    -- Assert email not created in database
    testModifySite (\site -> pure (site { siteSettingsStoreEmail = True }, id))
    post SendEmailR
    -- Assert email created in database
    
    testModifySite (\site -> do
    middleware <- makeLogware site
    pure (site { appRedisConnection = Nothing }, middleware)
    )
    

  6. data ListMode

    OpenGL Graphics.Rendering.OpenGL.GL.DisplayLists

    No documentation available.

  7. listMode :: GettableStateVar ListMode

    OpenGL Graphics.Rendering.OpenGL.GL.DisplayLists

    No documentation available.

  8. hoistMu :: (forall a . () => f a -> g a) -> Mu f -> Mu g

    data-fix Data.Fix

    Change base functor in Mu.

  9. pollSTM :: Async a -> STM (Maybe (Either SomeException a))

    lifted-async Control.Concurrent.Async.Lifted

    A version of poll that can be used inside an STM transaction.

  10. waitAnyCatchSTM :: [Async a] -> STM (Async a, Either SomeException a)

    lifted-async Control.Concurrent.Async.Lifted

    A version of waitAnyCatch that can be used inside an STM transaction.

Page 54 of many | Previous | Next