odds 0.2.26

Odds and ends — collection miscellania. Extra functionality for slices (`.find()`, `RevSlice`), strings and other things. Debug checked variants of `get_unchecked` and `slice_unchecked`, and extra methods for strings and vectors: `repeat`, `insert_str` and `splice`. Things in odds may move to more appropriate crates if we find them.
Documentation

use std::ops::{
    RangeFull,
    RangeFrom,
    RangeTo,
    Range,
};

/// **IndexRange** is implemented by Rust's built-in range types, produced
/// by range syntax like `..`, `a..`, `..b` or `c..d`.
pub trait IndexRange<T=usize> {
    #[inline]
    /// Start index (inclusive)
    fn start(&self) -> Option<T> { None }
    #[inline]
    /// End index (exclusive)
    fn end(&self) -> Option<T> { None }
}


impl<T> IndexRange<T> for RangeFull {}

impl<T: Copy> IndexRange<T> for RangeFrom<T> {
    #[inline]
    fn start(&self) -> Option<T> { Some(self.start) }
}

impl<T: Copy> IndexRange<T> for RangeTo<T> {
    #[inline]
    fn end(&self) -> Option<T> { Some(self.end) }
}

impl<T: Copy> IndexRange<T> for Range<T> {
    #[inline]
    fn start(&self) -> Option<T> { Some(self.start) }
    #[inline]
    fn end(&self) -> Option<T> { Some(self.end) }
}