summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-06-27 02:25:11 +0200
committermo8it <mo8it@proton.me>2024-06-27 02:25:11 +0200
commitde3f846a53055bbca5ec9dd6d536a31c82d39648 (patch)
treec5ca723d1833700881b27dee0b397ccbb59167ee
parent46121b71cf2f4da296e80fad025eaee03c67dcd5 (diff)
generics2 solution
-rw-r--r--exercises/14_generics/generics2.rs4
-rw-r--r--rustlings-macros/info.toml8
-rw-r--r--solutions/14_generics/generics2.rs29
3 files changed, 32 insertions, 9 deletions
diff --git a/exercises/14_generics/generics2.rs b/exercises/14_generics/generics2.rs
index 6cdcdaf..8908725 100644
--- a/exercises/14_generics/generics2.rs
+++ b/exercises/14_generics/generics2.rs
@@ -1,10 +1,10 @@
// This powerful wrapper provides the ability to store a positive integer value.
-// Rewrite it using generics so that it supports wrapping ANY type.
-
+// TODO: Rewrite it using a generic so that it supports wrapping ANY type.
struct Wrapper {
value: u32,
}
+// TODO: Adapt the struct's implementation to be generic over the wrapped value.
impl Wrapper {
fn new(value: u32) -> Self {
Wrapper { value }
diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml
index 23eb304..11d6d59 100644
--- a/rustlings-macros/info.toml
+++ b/rustlings-macros/info.toml
@@ -746,12 +746,8 @@ the generic of the vector."""
name = "generics2"
dir = "14_generics"
hint = """
-Currently we are wrapping only values of type `u32`.
-
-Maybe we could update the explicit references to this data type somehow?
-
-If you are still stuck https://doc.rust-lang.org/stable/book/ch10-01-syntax.html#in-method-definitions
-"""
+Related section in The Book:
+https://doc.rust-lang.org/stable/book/ch10-01-syntax.html#in-method-definitions"""
# TRAITS
diff --git a/solutions/14_generics/generics2.rs b/solutions/14_generics/generics2.rs
index 4e18198..14f3f7a 100644
--- a/solutions/14_generics/generics2.rs
+++ b/solutions/14_generics/generics2.rs
@@ -1 +1,28 @@
-// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
+struct Wrapper<T> {
+ value: T,
+}
+
+impl<T> Wrapper<T> {
+ fn new(value: T) -> Self {
+ Wrapper { value }
+ }
+}
+
+fn main() {
+ // You can optionally experiment here.
+}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ #[test]
+ fn store_u32_in_wrapper() {
+ assert_eq!(Wrapper::new(42).value, 42);
+ }
+
+ #[test]
+ fn store_str_in_wrapper() {
+ assert_eq!(Wrapper::new("Foo").value, "Foo");
+ }
+}