1 2 3 4 5 6 7 8
//! Result type for numeric parsing functions. use core::result; use crate::error; /// A specialized Result type for lexical operations. pub type Result<T> = result::Result<T, error::Error>;