Crates.io | boxed-slice |
lib.rs | boxed-slice |
version | 0.1.1 |
source | src |
created_at | 2020-12-02 22:21:12.900899 |
updated_at | 2020-12-02 23:26:00.07517 |
description | An easy abstraction around boxed slices sized by a const generic. |
homepage | |
repository | https://github.com/aspenluxxxy/boxed-slice |
max_upload_size | |
id | 319031 |
size | 12,135 |
boxed-slice
is a simple wrapper around a Box<T, N>
using const generics for a compile-time constant size.
As this uses #![feature(min_const_generics)]
, a Nightly version of Rust is required!
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()));
serde
, for full BoxedSlice
serialization/deserialization supportCopyright (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.