#const-generics #serde #box #slice #array

nightly no-std boxed-slice

An easy abstraction around boxed slices sized by a const generic

2 releases

0.1.1 Dec 2, 2020
0.1.0 Dec 2, 2020

#258 in No standard library

Zlib license

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!

However, it appears that min_const_generics is on track to become stabilized in Rust 1.50, so stay tuned!

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 full BoxedSlice 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:

  1. 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.

  2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.

  3. This notice may not be removed or altered from any source distribution.

Dependencies

~175KB