1 2 3 4 5 6 7 8 9
#![no_std] //! An escape hatch for implementing `ops` traits for references to newtypes. mod binary; mod unary; pub use binary::*; pub use unary::*;