//! Tuple binding subsystem for encoding Rust primitive types into sortable byte arrays.
//!
//! This module provides the primary binding mechanism for database keys. Values are
//! encoded in a way that their byte representation sorts in the same order as the
//! original values when compared lexicographically.
//!
pub use *;
pub use SortKey;
pub use TupleBinding;
pub use TupleInput;
pub use TupleOutput;