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