|
6 | 6 | [](https://travis-ci.com/slightlyoutofphase/staticvec)
|
7 | 7 | [](https://ci.appveyor.com/project/slightlyoutofphase/staticvec/branch/master)
|
8 | 8 |
|
9 |
| -**Important note regarding version 0.10.0 of this crate:** |
10 |
| - |
11 |
| -It exists *solely* because of the fact that the following list of functions: |
12 |
| - |
13 |
| -- `concat` |
14 |
| -- `concat_clone` |
15 |
| -- `intersperse` |
16 |
| -- `intersperse_clone` |
17 |
| -- `symmetric_difference` |
18 |
| -- `union` |
19 |
| - |
20 |
| -were broken in a way by `rust-lang` PR #70107 that simply cannot be worked around at this time. If you rely on anything |
21 |
| -of those functions, please continue using version 0.9.3 with a released-prior-to-June-3 copy of the nightly compiler. Again, |
22 |
| -that would still be the latest version of this crate if it were the case that I were able to do something to fix the compilation error, |
23 |
| -but unfortunately that simply is not the case right now. |
24 |
| - |
25 | 9 | Implements a fixed-capacity stack-allocated Vec alternative backed by an array, using const generics.
|
26 | 10 |
|
27 | 11 | Note: the word "static" here is meant by the traditional definition of "unchanging" / "not dynamic" etc.
|
@@ -49,6 +33,22 @@ Contributions/suggestions/etc. very welcome!
|
49 | 33 |
|
50 | 34 | **Minimum supported Rust version:** due to the use of const generics, this is a nightly-only crate at the moment.
|
51 | 35 |
|
| 36 | +**Important note regarding version 0.10.0 of this crate:** |
| 37 | + |
| 38 | +It exists *solely* because of the fact that the following list of functions: |
| 39 | + |
| 40 | +- `concat` |
| 41 | +- `concat_clone` |
| 42 | +- `intersperse` |
| 43 | +- `intersperse_clone` |
| 44 | +- `symmetric_difference` |
| 45 | +- `union` |
| 46 | + |
| 47 | +were broken in a way by `rust-lang` PR #70107 that simply cannot be worked around at this time. If you rely on any of those functions, |
| 48 | +please continue using version 0.9.3 with a released-prior-to-June-3 copy of the nightly compiler. Again, 0.9.3 would still be the latest |
| 49 | +version of this crate if it were the case that it were actually possible to do anything to fix the compilation error, but unfortunately |
| 50 | +that just is not the case right now. |
| 51 | + |
52 | 52 | A basic usage example:
|
53 | 53 |
|
54 | 54 | ```rust
|
|
0 commit comments