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.
formatWithSymbols :: BoardState -> Board -> Boxboard-games Game.Labyrinth No documentation available.
forkM :: SDoc -> IfL a -> IfL abreakpoint 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]
format :: Lens' CopyrightDescription URIcabal-debian Debian.Debianize.CopyrightDescription No documentation available.
format :: (MonadThrow m, MonadWalk m) => FilePath -> ByteString -> m ByteStringcabal-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.
format :: (MonadThrow m, MonadWalk m) => FilePath -> ByteString -> m ByteStringcabal-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.
forgetTargetsDetail :: [AvailableTarget k] -> [AvailableTarget ()]cabal-install Distribution.Client.ProjectOrchestration No documentation available.
formatCommand :: CommandUI (Flag Verbosity)cabal-install Distribution.Client.Setup No documentation available.
forceExternalSetupMethod :: SetupScriptOptions -> Boolcabal-install Distribution.Client.SetupWrapper No documentation available.
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.
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