Skip to content

Commit b7a80ba

Browse files
committed
Better documentation for strict vector
1 parent 7aea84f commit b7a80ba

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

vector/src/Data/Vector/Strict.hs

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,11 @@
1818
-- Stability : experimental
1919
-- Portability : non-portable
2020
--
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').
3026
--
3127
-- For unboxed arrays, use "Data.Vector.Unboxed".
3228

0 commit comments

Comments
 (0)