·
1 commit
to master
since this release
Immutable
release. Only release title and notes can be modified.
Added
- Validation in
DoubleArray::newto prevent undefined behavior when constructing from malformed byte slices (#24), by @vabr-g and @kampersanda. DoubleArray::new_unchecked(unsafe) for callers who can guarantee validity and want to skip the validation cost, by @vabr-g and @kampersanda.YadaErrorvariantsEmptyDoubleArray,UnalignedDoubleArray,UnalignedDoubleArrayBlocks, andInvalidDoubleArrayUnitfor byte slice validation failures, by @vabr-g and @kampersanda.Debugimpl forDoubleArray.
Changed
- BREAKING:
DoubleArray::newnow returnsResult<Self, YadaError>instead ofSelf, by @vabr-g and @kampersanda.