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. ixmapWithInd :: (Ix i, Ix i', IArray a e, IArray a e') => (i', i') -> (i' -> i) -> (i -> e -> i' -> e') -> a i e -> a i' e'

    carray Data.Array.CArray.Base

    Less polymorphic version.

  2. ixmapWithIndP :: (Ix i, Ix i', IArray a e, IArray a' e') => (i', i') -> (i' -> i) -> (i -> e -> i' -> e') -> a i e -> a' i' e'

    carray Data.Array.CArray.Base

    Generic slice and map. This takes the new range, the inverse map on indices, and function to produce the next element. It is the most general operation in its class.

  3. ixmapWithP :: (Ix i, Ix i', IArray a e, IArray a' e') => (i', i') -> (i' -> i) -> (e -> e') -> a i e -> a' i' e'

    carray Data.Array.CArray.Base

    Perform an operation on the elements, independent of their location.

  4. module Graphics.Gloss.Data.Bitmap

    Functions to load bitmap data from various places.

  5. data BitmapData

    gloss Graphics.Gloss.Data.Bitmap

    Abstract 32-bit RGBA bitmap data.

  6. data BitmapFormat

    gloss Graphics.Gloss.Data.Bitmap

    Description of how the bitmap is layed out in memory.

    • Prior version of Gloss assumed `BitmapFormat BottomToTop PxABGR`

  7. BitmapFormat :: RowOrder -> PixelFormat -> BitmapFormat

    gloss Graphics.Gloss.Data.Bitmap

    No documentation available.

  8. bitmapDataOfBMP :: BMP -> BitmapData

    gloss Graphics.Gloss.Data.Bitmap

    O(size). Copy a BMP file into a bitmap.

  9. bitmapDataOfByteString :: Int -> Int -> BitmapFormat -> ByteString -> Bool -> BitmapData

    gloss Graphics.Gloss.Data.Bitmap

    No documentation available.

  10. bitmapDataOfForeignPtr :: Int -> Int -> BitmapFormat -> ForeignPtr Word8 -> Bool -> BitmapData

    gloss Graphics.Gloss.Data.Bitmap

    No documentation available.

Page 575 of many | Previous | Next