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