matrix-slice 1.1.0

Safe abstractions for two-dimensional slices.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
## Version 1.1.0

Additions:
- Added `VecRef` and `VecMut` types for working with strided slices that must
  not be considered aliasing the intermediate elements.
- Added `Block{Ref,Mut}::{row,col}` that constructs the `Vec{Ref,Mut}`.

## Version 1.0.1

Fixes:
- `BlockMut::new` used `NonNull::from_ref` where it should have used
  `NonNull::from_mut` to preserve mutable access.

Additions:
- More documentation