traits1 solution

This commit is contained in:
mo8it 2024-06-27 03:04:57 +02:00
parent de3f846a53
commit 789223cc9e
2 changed files with 38 additions and 12 deletions

View file

@ -1,19 +1,17 @@
// Time to implement some traits! Your task is to implement the trait // The trait `AppendBar` has only one function which appends "Bar" to any object
// `AppendBar` for the type `String`. The trait AppendBar has only one function, // implementing this trait.
// which appends "Bar" to any object implementing this trait.
trait AppendBar { trait AppendBar {
fn append_bar(self) -> Self; fn append_bar(self) -> Self;
} }
impl AppendBar for String { impl AppendBar for String {
// TODO: Implement `AppendBar` for type `String`. // TODO: Implement `AppendBar` for the type `String`.
} }
fn main() { fn main() {
let s = String::from("Foo"); let s = String::from("Foo");
let s = s.append_bar(); let s = s.append_bar();
println!("s: {}", s); println!("s: {s}");
} }
#[cfg(test)] #[cfg(test)]
@ -22,14 +20,11 @@ mod tests {
#[test] #[test]
fn is_foo_bar() { fn is_foo_bar() {
assert_eq!(String::from("Foo").append_bar(), String::from("FooBar")); assert_eq!(String::from("Foo").append_bar(), "FooBar");
} }
#[test] #[test]
fn is_bar_bar() { fn is_bar_bar() {
assert_eq!( assert_eq!(String::from("").append_bar().append_bar(), "BarBar");
String::from("").append_bar().append_bar(),
String::from("BarBar")
);
} }
} }

View file

@ -1 +1,32 @@
// Solutions will be available before the stable release. Thank you for testing the beta version 🥰 // The trait `AppendBar` has only one function which appends "Bar" to any object
// implementing this trait.
trait AppendBar {
fn append_bar(self) -> Self;
}
impl AppendBar for String {
fn append_bar(self) -> Self {
self + "Bar"
}
}
fn main() {
let s = String::from("Foo");
let s = s.append_bar();
println!("s: {s}");
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn is_foo_bar() {
assert_eq!(String::from("Foo").append_bar(), "FooBar");
}
#[test]
fn is_bar_bar() {
assert_eq!(String::from("").append_bar().append_bar(), "BarBar");
}
}