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.

  1. formatID :: GettableStateVar Int

    GLUT 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.

  2. formattingDelimChar :: FormattingSpec il -> !Char

    commonmark Commonmark.Inlines

    Character that triggers formatting

  3. formattingDoubleMatch :: FormattingSpec il -> Maybe (il -> il)

    commonmark Commonmark.Inlines

    Constructor to use for text between double delimiters.

  4. formattingIgnorePunctuation :: FormattingSpec il -> !Bool

    commonmark Commonmark.Inlines

    Treat punctuation like letters for purposes of computing can open/can close

  5. formattingIntraWord :: FormattingSpec il -> !Bool

    commonmark Commonmark.Inlines

    True if formatting can start/end in a word

  6. formattingSingleMatch :: FormattingSpec il -> Maybe (il -> il)

    commonmark Commonmark.Inlines

    Constructor to use for text between single delimiters.

  7. formattingWhenUnmatched :: FormattingSpec il -> !Char

    commonmark Commonmark.Inlines

    Fallback when not matched.

  8. forM :: (Contiguous arr1, Contiguous arr2, Element arr1 a, Element arr2 b, Monad m) => arr1 a -> (a -> m b) -> m (arr2 b)

    contiguous Data.Primitive.Contiguous

    forM is mapM with its arguments flipped. For a version that ignores its results, see forM_.

  9. forM_ :: (Contiguous arr, Element arr a, Element arr b, Applicative f) => arr a -> (a -> f b) -> f ()

    contiguous Data.Primitive.Contiguous

    forM_ is mapM_ with its arguments flipped. For a version that doesn't ignore its results, see forM.

  10. 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
    

Page 81 of many | Previous | Next