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.

  1. pattern GL_ANY_SAMPLES_PASSED_CONSERVATIVE :: GLenum

    OpenGLRaw Graphics.GL.Core45

    No documentation available.

  2. pattern GL_ANY_SAMPLES_PASSED :: GLenum

    OpenGLRaw Graphics.GL.Core46

    No documentation available.

  3. pattern GL_ANY_SAMPLES_PASSED_CONSERVATIVE :: GLenum

    OpenGLRaw Graphics.GL.Core46

    No documentation available.

  4. pattern GL_ANY_SAMPLES_PASSED :: GLenum

    OpenGLRaw Graphics.GL.Tokens

    No documentation available.

  5. pattern GL_ANY_SAMPLES_PASSED_CONSERVATIVE :: GLenum

    OpenGLRaw Graphics.GL.Tokens

    No documentation available.

  6. pattern GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT :: GLenum

    OpenGLRaw Graphics.GL.Tokens

    No documentation available.

  7. pattern GL_ANY_SAMPLES_PASSED_EXT :: GLenum

    OpenGLRaw Graphics.GL.Tokens

    No documentation available.

  8. conduitPutMany :: forall (m :: Type -> Type) . Monad m => ConduitT Put (Vector ByteString) m ()

    binary-conduit Data.Conduit.Serialization.Binary

    Vectorized variant of conduitPut.

  9. putMany :: Foldable f => Int -> (a -> Builder) -> f a -> (MutableBytes RealWorld -> IO b) -> IO ()

    bytebuild Data.Bytes.Builder

    Run a builder against lots of elements. This fills the same underlying buffer over and over again. Do not let the argument to the callback escape from the callback (i.e. do not write it to an IORef). Also, do not unsafeFreezeByteArray any of the mutable byte arrays in the callback. The intent is that the callback will write the buffer out.

  10. putManyConsLength :: forall f m (n :: Nat) a b . (Foldable f, MonadIO m) => Nat n -> (Int -> Builder n) -> Int -> (a -> Builder) -> f a -> (MutableBytes RealWorld -> m b) -> m ()

    bytebuild Data.Bytes.Builder

    Variant of putMany that prefixes each pushed array of chunks with the number of bytes that the chunks in each batch required. (This excludes the bytes required to encode the length itself.) This is useful for chunked HTTP encoding.

Page 167 of many | Previous | Next