Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
module Clash.Sized.Internal.
BitVector No documentation available.
-
clash-prelude Clash.Sized.Internal.BitVector A vector of bits
- Bit indices are descending
- Num instance performs unsigned arithmetic.
>>> :i BitVector type role BitVector nominal ...
as it is not safe to coerce between different sizes of BitVector. To change the size, use the functions in the Resize class. -
clash-prelude Clash.Sized.Vector No documentation available.
-
clash-prelude Clash.Sized.Vector No documentation available.
-
classy-prelude-conduit ClassyPrelude.Conduit 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.
sinkVector :: forall v a (m :: Type -> Type) o . (Vector v a, PrimMonad m) => ConduitT a o m (v a)classy-prelude-conduit ClassyPrelude.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
-
classy-prelude-conduit ClassyPrelude.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
getVector :: (PrimMonad m, PrimState m ~ s) => DoubleBuffer s -> m (MVector s Double)data-sketches-core DataSketches.Quantiles.RelativeErrorQuantile.Internal.DoubleBuffer No documentation available.
-
dense-linear-algebra Statistics.Matrix Matrix data.
fromVector :: Int -> Int -> Vector Double -> Matrixdense-linear-algebra Statistics.Matrix Convert from a row-major vector.