# What is this? `boxed-slice` is a simple wrapper around a `Box` 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!](https://github.com/rust-lang/rust/pull/79135) ## Example ```rust use boxed_slice::BoxedSlice; let answer_slice: BoxedSlice = BoxedSlice::new(42); assert_eq!(answer_slice.len(), 42); assert!(answer_slice.iter().all(|num| *num == 42)); let default_slice: BoxedSlice = 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 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.