All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Introduced an MSRV: Rust 1.51
- Added
map_array_init
function (#38)
- Added
from_iter_reversed
function (#30)
- Removed
IsArray
trait (not necessary anymore with const generics)
- Removed
const-generics
feature flag. The MSRV is now rust 1.51
- Added a
try_array_init
function which initializes an array with a callable that may fail. - Added a
const-generics
feature which uses rust (unstable)const-generics
feature to implement the initializer functions for all array sizes. - Added documentation