thin-boxed-slice 0.2.0

`ThinBoxedSlice` stores the size of the slice before the content of the slice, so that `size_of::<ThinBoxedSlice>` is only the size of a pointer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# thin-boxed-slice

`ThinBoxedSlice` stores the size of the slice before the content of the slice, so that `size_of::<ThinBoxedSlice>` is only the size of a pointer.

## Similar projects

### [thin-vec]https://docs.rs/thin-vec

### [thin-slice]https://docs.rs/thin-slice

Note that `thin-slice` stores the fat pointer of the slice into a new heap memory if the slice length is large.