stable array collectors
1
2
3
4
5
6
7
8
9
10
# collar

this crate provides `collect_array` and makes it easy to collect to small stack allocated arrays

```rs
use collar::*;
let Some([ty, path, http]) = request.split(' ').collect_array_checked() else {
    return;
};
```