projects
/
rust-101.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
part11: first version
[rust-101.git]
/
workspace
/
src
/
part08.rs
diff --git
a/workspace/src/part08.rs
b/workspace/src/part08.rs
index d03934a8a023b6827f2c9298ccd9bca51d9fc0dd..1fac1508d7326e5cbbbaadefcf74b04bd5ffe4ee 100644
(file)
--- a/
workspace/src/part08.rs
+++ b/
workspace/src/part08.rs
@@
-15,7
+15,7
@@
fn overflowing_add(a: u64, b: u64, carry: bool) -> (u64, bool) {
// **Exercise 08.1**: Write the code to handle adding the carry in this case.
unimplemented!()
} else {
// **Exercise 08.1**: Write the code to handle adding the carry in this case.
unimplemented!()
} else {
- //
T
he addition *did* overflow. It is impossible for the addition of the carry
+ //
Otherwise, t
he addition *did* overflow. It is impossible for the addition of the carry
// to overflow again, as we are just adding 0 or 1.
unimplemented!()
}
// to overflow again, as we are just adding 0 or 1.
unimplemented!()
}
@@
-76,7
+76,9
@@
impl<'a, 'b> ops::Add<&'a BigInt> for &'b BigInt {
// Rust calls a bunch of definitions that are grouped together a *module*. You can put the tests in a submodule as follows.
#[cfg(test)]
mod tests {
// Rust calls a bunch of definitions that are grouped together a *module*. You can put the tests in a submodule as follows.
#[cfg(test)]
mod tests {
- #[test]
+ use part05::BigInt;
+
+ /*#[test]*/
fn test_add() {
let b1 = BigInt::new(1 << 32);
let b2 = BigInt::from_vec(vec![0, 1]);
fn test_add() {
let b1 = BigInt::new(1 << 32);
let b2 = BigInt::from_vec(vec![0, 1]);