1#![warn(missing_docs)] 2//! This crate offers traits to abstract over sequence implementations. 3 4/// Implementations of this trait for stdlib types. 5pub mod implementation; 6/// The traits abstracting over a sequence. 7pub mod interface;