fixed-vector: Generic vectors with statically known size.
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:
>>>sum (1,2,3)6
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 Complex and array-based ones.
Data.Vector.Fixed.Cont: Continuation based vectors. Internally all functions use them.
Data.Vector.Fixed.Unboxed: Unboxed vectors which select best representation using types.
Data.Vector.Fixed.Strict: Strict boxed vector which can hold elements of any type.
Data.Vector.Fixed.Boxed: Lazy boxed vector which can hold elements of any type.
Data.Vector.Fixed.Storable: Unboxed vectors of Storable types.
Data.Vector.Fixed.Primitive: Unboxed vectors backed by single
ByteArrayData.Vector.Fixed.Mutable: Type classes for array-based implementation and API for working with mutable state.
Modules
[Index] [Quick Jump]
Downloads
- fixed-vector-2.1.0.0.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
| Versions [RSS] | 0.1, 0.1.1, 0.1.2, 0.1.2.1, 0.2.0.0, 0.3.0.0, 0.3.0.1, 0.4.0.0, 0.4.1.0, 0.4.2.0, 0.4.3.0, 0.4.4.0, 0.5.0.0, 0.5.1.0, 0.5.1.2, 0.6.0.0, 0.6.1.0, 0.6.1.1, 0.6.2.0, 0.6.3.0, 0.6.3.1, 0.6.4.0, 0.7.0.0, 0.7.0.1, 0.7.0.2, 0.7.0.3, 0.8.0.0, 0.8.1.0, 0.9.0.0, 1.0.0.0, 1.1.0.0, 1.2.0.0, 1.2.1.0, 1.2.1.1, 1.2.2.1, 1.2.3.0, 2.0.0.0, 2.1.0.0 |
|---|---|
| Change log | ChangeLog.md |
| Dependencies | base (>=4.16 && <5), deepseq, foldable1-classes-compat (>=0.1), primitive (>=0.6.2) [details] |
| Tested with | ghc ==9.4.7 || ==9.6.7 || ==9.8.4 || ==9.10.2 || ==9.12.2 || ==9.14.1 |
| License | BSD-3-Clause |
| Author | Aleksey Khudyakov <alexey.skladnoy@gmail.com> |
| Maintainer | Aleksey Khudyakov <alexey.skladnoy@gmail.com> |
| Uploaded | by AlexeyKhudyakov at 2026-01-27T18:55:19Z |
| Category | Data |
| Bug tracker | https://github.com/Shimuuar/fixed-vector/issues |
| Source repo | head: git clone http://github.com/Shimuuar/fixed-vector |
| Distributions | LTSHaskell:2.0.0.0, NixOS:2.0.0.0, Stackage:2.0.0.0 |
| Reverse Dependencies | 15 direct, 23 indirect [details] |
| Downloads | 31718 total (148 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating | |
| Status | Docs available [build log] All reported builds failed as of 2026-01-27 [all 1 reports] |