2 releases
0.1.1 | Dec 2, 2020 |
---|---|
0.1.0 | Dec 2, 2020 |
#321 in No standard library
11KB
154 lines
What is this?
boxed-slice
is a simple wrapper around a Box<T, N>
using const generics for a compile-time constant size.
DISCLAIMER
As this uses #![feature(min_const_generics)]
, a Nightly version of Rust is required!
Example
use boxed_slice::BoxedSlice;
let answer_slice: BoxedSlice<u8, 42> = BoxedSlice::new(42);
assert_eq!(answer_slice.len(), 42);
assert!(answer_slice.iter().all(|num| *num == 42));
let default_slice: BoxedSlice<u8, 128> = BoxedSlice::default();
assert_eq!(default_slice.len(), 128);
assert!(default_slice.iter().all(|num| *num == u8::default()));
Features
serde
, for fullBoxedSlice
serialization/deserialization support
License
The zlib/libpng License
Copyright (c) 2020 aspen aspenuwu@protonmail.com
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
-
The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
-
Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
-
This notice may not be removed or altered from any source distribution.
Dependencies
~165KB