Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

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

  1. formatWithSymbols :: BoardState -> Board -> Box

    board-games Game.Labyrinth

    No documentation available.

  2. forkM :: SDoc -> IfL a -> IfL a

    breakpoint Debug.Breakpoint.GhcFacade

    Run thing_inside in an interleaved thread. It shares everything with the parent thread, so this is DANGEROUS. It throws an error if the computation fails It's used for lazily type-checking interface signatures, which is pretty benign. See Note [Masking exceptions in forkM]

  3. format :: Lens' CopyrightDescription URI

    cabal-debian Debian.Debianize.CopyrightDescription

    No documentation available.

  4. format :: (MonadThrow m, MonadWalk m) => FilePath -> ByteString -> m ByteString

    cabal-gild CabalGild

    Formats the given input using the provided file path as the apparent source file (see stdin). An exception will be thrown if the input is invalid. The MonadWalk constraint is used to discover modules on the file system. Typically m will be IO.

  5. format :: (MonadThrow m, MonadWalk m) => FilePath -> ByteString -> m ByteString

    cabal-gild CabalGild.Unstable.Main

    Formats the given input using the provided file path as the apparent source file (see stdin). An exception will be thrown if the input is invalid. The MonadWalk constraint is used to discover modules on the file system. Typically m will be IO.

  6. forgetTargetsDetail :: [AvailableTarget k] -> [AvailableTarget ()]

    cabal-install Distribution.Client.ProjectOrchestration

    No documentation available.

  7. formatCommand :: CommandUI (Flag Verbosity)

    cabal-install Distribution.Client.Setup

    No documentation available.

  8. forceExternalSetupMethod :: SetupScriptOptions -> Bool

    cabal-install Distribution.Client.SetupWrapper

    No documentation available.

  9. forM_ :: (Foldable t, Monad m) => t a -> (a -> m b) -> m ()

    calligraphy Calligraphy.Prelude

    forM_ is mapM_ with its arguments flipped. For a version that doesn't ignore the results see forM. forM_ is just like for_, but specialised to monadic actions.

  10. for_ :: (Foldable t, Applicative f) => t a -> (a -> f b) -> f ()

    calligraphy Calligraphy.Prelude

    for_ is traverse_ with its arguments flipped. For a version that doesn't ignore the results see for. This is forM_ generalised to Applicative actions. for_ is just like forM_, but generalised to Applicative actions.

    Examples

    Basic usage:
    >>> for_ [1..4] print
    1
    2
    3
    4
    

Page 157 of many | Previous | Next