1//! Utilities for working with encoders. 2 3mod chain; 4pub use self::chain::Chain; 5 6/// Chain two encoders, encoding them in sequence. 7pub fn chain<S, T>(first: S, second: T) -> Chain<S, T> { 8 Chain::new(first, second) 9}