divide_slice 0.1.1

Provides methods to divide a slice into portions of same size
Documentation
1
2
3
4
5
6
Divide slices into portions of same size
========================================

Divide_slice provides two additional methods to the primitive type [slice](https://doc.rust-lang.org/std/primitive.slice.html):
* `divide`: divide a slice into `n` non-overlapping portions, returning an iterator.
* `divide_mut`: divide a slice into `n` mutable non-overlapping portions, returning an iterator.