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.
pattern
GL_ANY_SAMPLES_PASSED_CONSERVATIVE :: GLenumOpenGLRaw Graphics.GL.Core45 No documentation available.
pattern
GL_ANY_SAMPLES_PASSED :: GLenumOpenGLRaw Graphics.GL.Core46 No documentation available.
pattern
GL_ANY_SAMPLES_PASSED_CONSERVATIVE :: GLenumOpenGLRaw Graphics.GL.Core46 No documentation available.
pattern
GL_ANY_SAMPLES_PASSED :: GLenumOpenGLRaw Graphics.GL.Tokens No documentation available.
pattern
GL_ANY_SAMPLES_PASSED_CONSERVATIVE :: GLenumOpenGLRaw Graphics.GL.Tokens No documentation available.
pattern
GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT :: GLenumOpenGLRaw Graphics.GL.Tokens No documentation available.
pattern
GL_ANY_SAMPLES_PASSED_EXT :: GLenumOpenGLRaw Graphics.GL.Tokens No documentation available.
conduitPutMany :: forall (m :: Type -> Type) . Monad m => ConduitT Put (Vector ByteString) m ()binary-conduit Data.Conduit.Serialization.Binary Vectorized variant of conduitPut.
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.
-
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.