File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change 18
18
-- Stability : experimental
19
19
-- Portability : non-portable
20
20
--
21
- -- A library for boxed vectors (that is, polymorphic arrays capable of
22
- -- holding any Haskell value). The vectors come in two flavours:
23
- --
24
- -- * mutable
25
- --
26
- -- * immutable
27
- --
28
- -- They support a rich interface of both list-like operations and bulk
29
- -- array operations.
21
+ -- Immutable strict boxed vectors (that is, polymorphic arrays capable
22
+ -- of holding any Haskell value). It is possible to create vector
23
+ -- which contain bottom elements, either by using mutable interfaces
24
+ -- (see "Data.Vector.Strict.Mutable") or functions that don't preserve
25
+ -- strictness ('lazyFromArray').
30
26
--
31
27
-- For unboxed arrays, use "Data.Vector.Unboxed".
32
28
You can’t perform that action at this time.
0 commit comments