Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
module Control.Alternative.
Vector No documentation available.
module Clash.Hedgehog.Sized.
Vector Random generation of vectors.
-
classy-prelude-yesod ClassyPrelude.Yesod No documentation available.
module Sound.File.Sndfile.Buffer.
Vector This module provides a Buffer instance for Vector, wrapped in a newtype. See Sound.File.Sndfile.Buffer.Vector.Examples for some example code.
data
Vector (a :: Type -> Type) (b :: Type -> Type) chybrid-vectors Data.Vector.Hybrid No documentation available.
data
Vector (a :: Type -> Type) (b :: Type -> Type) chybrid-vectors Data.Vector.Hybrid.Internal No documentation available.
module Data.Array.Repa.IO.
Vector Read and write vectors as ASCII text files. The file format is like:
VECTOR -- header 100 -- length of vector 1.23 1.56 1.23 ... -- data, separated by whitespace ....
vector :: Arbitrary a => Int -> Gen [a]QuickCheck Test.QuickCheck Generates a list of a given length.
vector :: Arbitrary a => Int -> Gen [a]QuickCheck Test.QuickCheck.Arbitrary Generates a list of a given length.
-
Efficient Arrays . An efficient implementation of Int-indexed arrays (both mutable and immutable), with a powerful loop optimisation framework . . It is structured as follows: . [Data.Vector] Boxed vectors of arbitrary types. . [Data.Vector.Unboxed] Unboxed vectors with an adaptive representation based on data type families. . [Data.Vector.Storable] Unboxed vectors of Storable types. . [Data.Vector.Primitive] Unboxed vectors of primitive types as defined by the primitive package. Data.Vector.Unboxed is more flexible at no performance cost. . [Data.Vector.Generic] Generic interface to the vector types. . There is also a (draft) tutorial on common uses of vector. . * http://haskell.org/haskellwiki/Numeric_Haskell:_A_Vector_Tutorial