mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-10 14:44:25 +00:00
27 lines
693 B
Rust
27 lines
693 B
Rust
// 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!
|
|
|
|
trait AppendBar {
|
|
fn append_bar(self) -> Self;
|
|
}
|
|
|
|
// TODO: Implement trait `AppendBar` for a vector of strings.
|
|
|
|
fn main() {
|
|
// You can optionally experiment 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"));
|
|
}
|
|
}
|