2023-05-29 13:39:08 -04:00
|
|
|
// 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"'
|
2020-02-25 04:48:50 -05:00
|
|
|
// to a vector of strings.
|
2020-07-10 22:01:38 -04:00
|
|
|
//
|
2023-05-29 13:39:08 -04:00
|
|
|
// No boiler plate code this time, you can do this!
|
2020-02-25 04:48:50 -05:00
|
|
|
|
|
|
|
trait AppendBar {
|
|
|
|
fn append_bar(self) -> Self;
|
|
|
|
}
|
|
|
|
|
2022-11-24 14:39:54 -05:00
|
|
|
// TODO: Implement trait `AppendBar` for a vector of strings.
|
2020-02-25 04:48:50 -05:00
|
|
|
|
2024-04-17 16:46:21 -04:00
|
|
|
fn main() {
|
|
|
|
// You can optionally experiment here.
|
|
|
|
}
|
|
|
|
|
2020-02-25 04:48:50 -05:00
|
|
|
#[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"));
|
|
|
|
}
|
2020-02-25 06:00:09 -05:00
|
|
|
}
|