# UN-PRIM Unusual primitive types for any rust project. This crate was **unstable** and maybe lot's of bugs and I suggest not to use this. ```toml [dependencies] unprim = "0.1" ``` ```rust use unprim::*; let x: U256 = 100u128.into(); let y: U256 = 2u128.into(); let z = x * y; assert_eq!(200u64, z.into()); ``` ## TODO - Add Pow/Exp method for each types. - Add SQRT method for each types.