//! Slice-like and range-like types with an unbounded lifetime.
use slice;
use *;
/// Rust-style slice.
pub type Slice<T> = &'static ;
pub type SliceIter<T> = Iter;
/// Create unbounded slice from raw parts.
pub unsafe
/// Create unbounded mutable slice from raw parts.
pub unsafe