The 0.3.7 release adds a few chunky slice functions, and fixes an iterator method.
Changelog
0.3.7
Fixed ChunksExact::remainder
's implementation, it used to return the entire uniterated-over slice, when it should only return the part of the slice that the iterator never yields.
Added these items to konst::slice
module:
ArrayChunksRev
structArrayChunks
structRChunksExactRev
structRChunksExact
structRChunksRev
structRChunks
structarray_chunks
functionas_chunks
functionas_rchunks
functionrchunks_exact
functionrchunks
function
0.3.6
Changed type_eq_projection_fn
macro to not use any unsafe
, this may require fixing bounds in your code.
0.3.5
Added typewit = "1.1"
dependency.
Removed konst::docs
module.
Replaced konst::polymorphism::{HasTypeWitness,MakeTypeWitness,TypeWitnessTypeArg,TypeEq}
from the same-named items in typewit
Added reexport of typewit::{self, CallFn, simple_type_witness,TypeFn,type_fn}
in konst::polymorphism
0.3.4
Fixed Parser::parse_direction
's const
-ness by making it a const fn.