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.
hidden :: forall (f :: Type -> Type) a . Mod f aoptparse-applicative Options.Applicative Hide this option from the brief description. Use internal to hide the option from the help text too.
hidden :: forall (f :: Type -> Type) a . Mod f aoptparse-applicative Options.Applicative.Builder Hide this option from the brief description. Use internal to hide the option from the help text too.
-
optparse-applicative Options.Applicative.Help.Pretty Maximum number of characters that fit in one line. The layout algorithms will try not to exceed the set limit by inserting line breaks when applicable (e.g. via softline').
layoutPageWidth :: LayoutOptions -> PageWidthoptparse-applicative Options.Applicative.Help.Pretty No documentation available.
pageWidth :: (PageWidth -> Doc ann) -> Doc annoptparse-applicative Options.Applicative.Help.Pretty Layout a document depending on the page width, if one has been specified.
>>> let prettyPageWidth (AvailablePerLine l r) = "Width:" <+> pretty l <> ", ribbon fraction:" <+> pretty r >>> let doc = "prefix" <+> pageWidth (brackets . prettyPageWidth) >>> putDocW 32 (vsep [indent n doc | n <- [0,4,8]]) prefix [Width: 32, ribbon fraction: 1.0] prefix [Width: 32, ribbon fraction: 1.0] prefix [Width: 32, ribbon fraction: 1.0]
width :: Doc ann -> (Int -> Doc ann) -> Doc annoptparse-applicative Options.Applicative.Help.Pretty (width doc f) lays out the document doc, and makes the column width of it available to a function.
>>> let annotate doc = width (brackets doc) (\w -> " <- width:" <+> pretty w) >>> align (vsep (map annotate ["---", "------", indent 3 "---", vsep ["---", indent 4 "---"]])) [---] <- width: 5 [------] <- width: 8 [ ---] <- width: 8 [--- ---] <- width: 8
-
optparse-applicative Options.Applicative.Types only visible in the full description
runIdentity :: Identity a -> aconduit Conduit No documentation available.
-
conduit Conduit Sliding window of values 1,2,3,4,5 with window size 2 gives [1,2],[2,3],[3,4],[4,5] Best used with structures that support O(1) snoc.
-
conduit Data.Conduit Uninhabited data type