// Copyright 2012 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! Operations and constants for signed 8-bits integers (`i8` type) #![unstable] #![doc(primitive = "i8")] use from_str::FromStr; use num::FromStrRadix; use num::strconv; use option::Option; pub use core::i8::{BITS, BYTES, MIN, MAX}; int_module!(i8)