@hackage fixed-vector0.3.0.0
Generic vectors with statically known size.
Categories
License
BSD-3-Clause
Maintainer
Aleksey Khudyakov <alexey.skladnoy@gmail.com>
Links
Versions
Installation
Dependencies (2)
Dependents (16)
@hackage/mcmc, @hackage/inf-backprop, @hackage/hgeometry, @hackage/fixed-vector-QC, @hackage/acme-everything, @hackage/vulkan, Show all…
Generic library for vectors with statically known size. Implementation is based on http://unlines.wordpress.com/2010/11/15/generics-for-small-fixed-size-vectors/ Same functions could be used to work with both ADT based vector like
data Vec3 a = a a a
Tuples are vectors too:
>>>
Vectors which are represented internally by arrays are provided by library. Both boxed and unboxed arrays are supported.
Library is structured as follows:
Data.Vector.Fixed- Generic API. It's suitable for both ADT-based vector like
Complexand array-based ones. Data.Vector.Fixed.Cont- Continuation based vectors. Internally all functions use them.
Data.Vector.Fixed.Mutable- Type classes for array-based implementation and API for working with mutable state.
Data.Vector.Fixed.Unboxed- Unboxed vectors.
Data.Vector.Fixed.Boxed- Boxed vector which can hold elements of any type.
Data.Vector.Fixed.Storable- Unboxed vectors of
Storabletypes. Data.Vector.Fixed.Primitive- Unboxed vectors based on pritimive package.
Changes in 0.3.0.0
Vectortype class definition is moved to theD.V.F.Contmodule.Indexing function restored.
unfoldradded.
Changes in 0.2.0.0
Continuation-based vector added.
Right fold added.
tailWith,convertContinuation, and!fromData.Vector.Fixedremoved.Vectorinstance for tuples added.
Changes in 0.1.2
imap,imapM,ifoldl,ifoldM,zipWithM,izipWithMfunctions are added.VectorNtype class added.
Changes in 0.1.1
foldMandtailWithadded. Type synonyms for numbers up to 6 are added.Funis reexported fromData.Vector.Fixed.