We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd724e0 commit feb9928Copy full SHA for feb9928
CHANGELOG.md
@@ -10,7 +10,11 @@ Recent Changes (arrayvec)
10
11
The New type syntax is `ArrayVec<T, CAP>` where `CAP` is the arrayvec capacity.
12
For arraystring the syntax is `ArrayString<CAP>`.
13
- Change by @bluss.
+
14
+ Length is stored internally as u32; this limits the maximum capacity. The size
15
+ of the `ArrayVec` or `ArrayString` structs for the same capacity may grow
16
+ slightly compared with the previous version (depending on padding requirements
17
+ for the element type). Change by @bluss.
18
19
- Arrayvec's `.extend()` and `FromIterator`/`.collect()` to arrayvec now
20
**panic** if the capacity of the arrayvec is exceeded. Change by @bluss.
0 commit comments