Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. sinkVector :: forall v a (m :: Type -> Type) o . (Vector v a, PrimMonad m) => ConduitT a o m (v a)

    conduit Conduit

    Sink incoming values into a vector, growing the vector as necessary to fit more elements. Note that using this function is more memory efficient than sinkList and then converting to a Vector, as it avoids intermediate list constructors. Subject to fusion

  2. sinkVectorN :: forall v a (m :: Type -> Type) o . (Vector v a, PrimMonad m) => Int -> ConduitT a o m (v a)

    conduit Conduit

    Sink incoming values into a vector, up until size maxSize. Subsequent values will be left in the stream. If there are less than maxSize values present, returns a Vector of smaller size. Note that using this function is more memory efficient than sinkList and then converting to a Vector, as it avoids intermediate list constructors. Subject to fusion

  3. conduitVector :: forall v a (m :: Type -> Type) . (Vector v a, PrimMonad m) => Int -> ConduitT a (v a) m ()

    conduit Data.Conduit.Combinators

    Break up a stream of values into vectors of size n. The final vector may be smaller than n if the total number of values is not a strict multiple of n. No empty vectors will be yielded.

  4. sinkVector :: forall v a (m :: Type -> Type) o . (Vector v a, PrimMonad m) => ConduitT a o m (v a)

    conduit Data.Conduit.Combinators

    Sink incoming values into a vector, growing the vector as necessary to fit more elements. Note that using this function is more memory efficient than sinkList and then converting to a Vector, as it avoids intermediate list constructors. Subject to fusion

  5. sinkVectorN :: forall v a (m :: Type -> Type) o . (Vector v a, PrimMonad m) => Int -> ConduitT a o m (v a)

    conduit Data.Conduit.Combinators

    Sink incoming values into a vector, up until size maxSize. Subsequent values will be left in the stream. If there are less than maxSize values present, returns a Vector of smaller size. Note that using this function is more memory efficient than sinkList and then converting to a Vector, as it avoids intermediate list constructors. Subject to fusion

  6. sinkVectorNS :: forall (v :: Type -> Type) a (m :: Type -> Type) . (Vector v a, PrimMonad m) => Int -> StreamConsumer a m (v a)

    conduit Data.Conduit.Combinators.Stream

    No documentation available.

  7. sinkVectorS :: forall (v :: Type -> Type) a (m :: Type -> Type) . (Vector v a, PrimMonad m) => StreamConsumer a m (v a)

    conduit Data.Conduit.Combinators.Stream

    No documentation available.

  8. LMVector :: Int -> LlvmType -> LlvmType

    ghc GHC.Llvm

    A vector of LlvmType

  9. LMVectorLit :: [LlvmLit] -> LlvmLit

    ghc GHC.Llvm

    Vector literal

  10. isVector :: LlvmType -> Bool

    ghc GHC.Llvm

    Test if the given LlvmType is an LMVector construct

Page 41 of many | Previous | Next