wrapping 0.1.2

Wrapping slices and arrays
Documentation
use std::ops::{Deref, Index};

/// A slice that wraps around its size.
///
/// It derefs to the underlying slice, so it implements all of the same
/// functions as a slice, with the exception of indexing.
///
/// # Example
/// ```
/// use wrapping::WrappingSlice;
///
/// let array: [&str; 1] = ["hello"];
/// let wrapping = WrappingSlice::from(&array[..]);
///
/// assert_eq!(wrapping[0], "hello");
/// assert_eq!(wrapping[1], "hello");
/// ```
pub struct WrappingSlice<'a, T>(&'a [T]);

impl<'a, T, I: Into<&'a [T]>> From<I> for WrappingSlice<'a, T> {
    fn from(slice: I) -> Self {
        WrappingSlice(slice.into())
    }
}

impl<'a, T> Deref for WrappingSlice<'a, T> {
    type Target = [T];

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl<'a, T> Index<usize> for WrappingSlice<'a, T> {
    type Output = T;

    fn index(&self, index: usize) -> &Self::Output {
        &self.0[index % self.0.len()]
    }
}