Hoogle Search
Within LTS Haskell 24.38 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
unflip :: Flip (t :: Type -> Type -> Type) a b -> t b atype-flip Data.Type.Flip No documentation available.
module Graphics.GL.MESA.
FramebufferFlipY No documentation available.
pattern
GL_FRAMEBUFFER_FLIP_Y_MESA :: GLenumOpenGLRaw Graphics.GL.MESA.FramebufferFlipY No documentation available.
glGetMESAFramebufferFlipY :: MonadIO m => m BoolOpenGLRaw Graphics.GL.MESA.FramebufferFlipY Is the MESA_framebuffer_flip_y extension supported?
gl_MESA_framebuffer_flip_y :: BoolOpenGLRaw Graphics.GL.MESA.FramebufferFlipY Is the MESA_framebuffer_flip_y extension supported? Note that in the presence of multiple contexts with different capabilities, this might be wrong. Use glGetMESAFramebufferFlipY in those cases instead.
pattern
GL_FRAMEBUFFER_FLIP_Y_MESA :: GLenumOpenGLRaw Graphics.GL.Tokens No documentation available.
pattern
GL_UNPACK_FLIP_Y_WEBGL :: GLenumOpenGLRaw Graphics.GL.Tokens No documentation available.
unsafeFlipBit :: PrimMonad m => MVector (PrimState m) Bit -> Int -> m ()bitvec Data.Bit Flip the bit at the given position. No bound checks are performed. Equivalent to flip unsafeModify complement, but up to 2x faster. In general there is no reason to unsafeModify bit vectors: either you modify it with id (which is id altogether) or with complement (which is unsafeFlipBit).
>>> :set -XOverloadedLists >>> Data.Vector.Unboxed.modify (`unsafeFlipBit` 2) [1,1,1,1] [1,1,0,1]
unsafeFlipBit :: PrimMonad m => MVector (PrimState m) Bit -> Int -> m ()bitvec Data.Bit.ThreadSafe Flip the bit at the given position. No bound checks are performed. Equivalent to flip unsafeModify complement, but up to 33% faster and atomic. In general there is no reason to unsafeModify bit vectors: either you modify it with id (which is id altogether) or with complement (which is unsafeFlipBit).
>>> Data.Vector.Unboxed.modify (\v -> unsafeFlipBit v 1) (read "[1,1,1]") [1,0,1]
dib3HeightFlipped :: BitmapInfoV3 -> Boolbmp Codec.BMP If the height field in the file is negative then this is interpreted as an image with the rows flipped.