Add an experimental arbitrary-precision integer types

This commit is contained in:
Sam Vervaeck 2020-05-27 09:08:44 +02:00
parent a426328e3a
commit 33e08166ff

View file

@ -10,6 +10,9 @@ pub struct u32;
pub struct u64;
pub struct usize;
pub struct int;
pub struct uint;
trait Num;
fn (a: N) + (b: N) -> N where N: Num {