rawslice 0.1.1

Reimplementation of the slice iterators, with extra features. For example creation from raw pointers and start, end pointer accessors.
Documentation
1
2
3
4
5
6
7
8
9
#![no_std]

extern crate rawpointer;

extern crate core as std;

mod iter;

pub use iter::{SliceIter};