//! The structure is generated by the following code.
//!
//! ```rust
//! use sortedvec::sortedvec;
//!
//! sortedvec! {
//! /// Sorted vector type that provides quick access to `(String, u64)`s through `u64` keys.
//! #[derive(Debug, Clone)]
//! pub struct ExampleSortedVec {
//! fn derive_key(t: &(String, u64)) -> &u64 { &t.1 }
//! }
//! }
//! ```
use cratesortedvec;
sortedvec!
}