File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 21
21
-- Portability : non-portable
22
22
--
23
23
-- Immutable strict boxed vectors (that is, polymorphic arrays capable
24
- -- of holding any Haskell value). It is possible to create vector
25
- -- which contain bottom elements, either by using mutable interfaces
26
- -- (see "Data.Vector.Strict.Mutable")
24
+ -- of holding any Haskell value). Vectors created using API for
25
+ -- immutable vector will have all elements evaluated to WHNF. Note
26
+ -- it's possible to create vector containing bottoms using mutable API
27
+ -- ('Data.Vector.Strict.Mutable.new' initialize vector with ⊥) fill
28
+ -- but all subsequent writes will be evauated to WHNF.
27
29
--
28
30
-- For unboxed arrays, use "Data.Vector.Unboxed".
29
31
module Data.Vector.Strict (
You can’t perform that action at this time.
0 commit comments