Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
formatID :: GettableStateVar IntGLUT Graphics.UI.GLUT.State Contains the window system dependent format ID for the current layer of the current window. On X11 GLUT implementations, this is the X visual ID. On Win32 GLUT implementations, this is the Win32 Pixel Format Descriptor number. This value is returned for debugging, benchmarking, and testing ease.
formattingDelimChar :: FormattingSpec il -> !Charcommonmark Commonmark.Inlines Character that triggers formatting
formattingDoubleMatch :: FormattingSpec il -> Maybe (il -> il)commonmark Commonmark.Inlines Constructor to use for text between double delimiters.
formattingIgnorePunctuation :: FormattingSpec il -> !Boolcommonmark Commonmark.Inlines Treat punctuation like letters for purposes of computing can open/can close
formattingIntraWord :: FormattingSpec il -> !Boolcommonmark Commonmark.Inlines True if formatting can start/end in a word
formattingSingleMatch :: FormattingSpec il -> Maybe (il -> il)commonmark Commonmark.Inlines Constructor to use for text between single delimiters.
formattingWhenUnmatched :: FormattingSpec il -> !Charcommonmark Commonmark.Inlines Fallback when not matched.
-
contiguous Data.Primitive.Contiguous forM is mapM with its arguments flipped. For a version that ignores its results, see forM_.
-
contiguous Data.Primitive.Contiguous forM_ is mapM_ with its arguments flipped. For a version that doesn't ignore its results, see forM.
for_ :: (Contiguous arr, Element arr a, Applicative f) => arr a -> (a -> f b) -> f ()contiguous Data.Primitive.Contiguous for_ is traverse_ with its arguments flipped. For a version that doesn't ignore the results see for.
>>> for_ (C.fromList [1..4] :: PrimArray Int) print 1 2 3 4