269f134f12147c5bab6e863889d50ad269738809
[rust-101.git] / workspace / src / part08.rs
1 // ***Remember to enable/add this part in `main.rs`!***
2
3 // Rust-101, Part 08: Associated Types, Modules
4 // ============================================
5
6 use std::cmp;
7 use std::ops;
8 use std::fmt;
9 use part05::BigInt;
10
11 // Add with carry, returning the sum and the carry
12 fn overflowing_add(a: u64, b: u64, carry: bool) -> (u64, bool) {
13     let sum = u64::wrapping_add(a, b);
14     if sum >= a { // first addition did not overflow
15         unimplemented!()
16     } else { // first addition *did* overflow
17         unimplemented!()
18     }
19 }
20
21 /*#[test]*/
22 fn test_overflowing_add() {
23     assert_eq!(overflowing_add(10, 100, false), (110, false));
24     assert_eq!(overflowing_add(10, 100, true), (111, false));
25     assert_eq!(overflowing_add(1 << 63, 1 << 63, false), (0, true));
26     assert_eq!(overflowing_add(1 << 63, 1 << 63, true), (1, true));
27     assert_eq!(overflowing_add(1 << 63, (1 << 63) -1 , true), (0, true));
28 }
29
30 impl ops::Add for BigInt {
31     type Output = BigInt;
32     fn add(self, rhs: BigInt) -> Self::Output {
33         let mut result_vec:Vec<u64> = Vec::with_capacity(cmp::max(self.data.len(), rhs.data.len()));
34         unimplemented!()
35     }
36 }
37
38 // [index](main.html) | [previous](part07.html) | [next](main.html)