-
Notifications
You must be signed in to change notification settings - Fork 10.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// traits1.rs | ||
// Time to implement some traits! | ||
// | ||
// Your task is to implement the trait | ||
// `AppendBar' for the type `String'. | ||
// | ||
// The trait AppendBar has only one function, | ||
// which appends "Bar" to any object | ||
// implementing this trait. | ||
|
||
// I AM NOT DONE | ||
trait AppendBar { | ||
fn append_bar(self) -> Self; | ||
} | ||
|
||
impl AppendBar for String { | ||
//Add your code here | ||
|
||
} | ||
|
||
fn main() { | ||
let s = String::from("Foo"); | ||
let s = s.append_bar(); | ||
println!("s: {}", s); | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
|
||
#[test] | ||
fn is_FooBar() { | ||
assert_eq!(String::from("Foo").append_bar(), String::from("FooBar")); | ||
} | ||
|
||
#[test] | ||
fn is_BarBar() { | ||
assert_eq!( | ||
String::from("").append_bar().append_bar(), | ||
String::from("BarBar") | ||
); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// traits2.rs | ||
// | ||
// Your task is to implement the trait | ||
// `AppendBar' for a vector of strings. | ||
// | ||
// To implement this trait, consider for | ||
// a moment what it means to 'append "Bar"' | ||
// to a vector of strings. | ||
// | ||
// No boiler plate code this time, | ||
// you can do this! Hints at the bottom. | ||
|
||
// I AM NOT DONE | ||
|
||
trait AppendBar { | ||
fn append_bar(self) -> Self; | ||
} | ||
|
||
//TODO: Add your code here | ||
|
||
|
||
|
||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
|
||
#[test] | ||
fn is_vec_pop_eq_bar() { | ||
let mut foo = vec![String::from("Foo")].append_bar(); | ||
assert_eq!(foo.pop().unwrap(), String::from("Bar")); | ||
assert_eq!(foo.pop().unwrap(), String::from("Foo")); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters