summaryrefslogtreecommitdiff
path: root/exercises/23_conversions/as_ref_mut.rs
diff options
context:
space:
mode:
authorAdam Brewer <adamhb321@gmail.com>2023-10-16 07:37:12 -0400
committerAdam Brewer <adamhb321@gmail.com>2023-10-16 07:37:12 -0400
commit64d95837e9813541cf5b357de13865ce687ae98d (patch)
treef022c5d5ba01128811c0b77618a7adb843ee876b /exercises/23_conversions/as_ref_mut.rs
parentc3941323e2c0b9ee286494327de92e00f23b9e3a (diff)
Update Exercises Directory Names to Reflect Order
Diffstat (limited to 'exercises/23_conversions/as_ref_mut.rs')
-rw-r--r--exercises/23_conversions/as_ref_mut.rs65
1 files changed, 65 insertions, 0 deletions
diff --git a/exercises/23_conversions/as_ref_mut.rs b/exercises/23_conversions/as_ref_mut.rs
new file mode 100644
index 0000000..2ba9e3f
--- /dev/null
+++ b/exercises/23_conversions/as_ref_mut.rs
@@ -0,0 +1,65 @@
+// as_ref_mut.rs
+//
+// AsRef and AsMut allow for cheap reference-to-reference conversions. Read more
+// about them at https://doc.rust-lang.org/std/convert/trait.AsRef.html and
+// https://doc.rust-lang.org/std/convert/trait.AsMut.html, respectively.
+//
+// Execute `rustlings hint as_ref_mut` or use the `hint` watch subcommand for a
+// hint.
+
+// I AM NOT DONE
+
+// Obtain the number of bytes (not characters) in the given argument.
+// TODO: Add the AsRef trait appropriately as a trait bound.
+fn byte_counter<T>(arg: T) -> usize {
+ arg.as_ref().as_bytes().len()
+}
+
+// Obtain the number of characters (not bytes) in the given argument.
+// TODO: Add the AsRef trait appropriately as a trait bound.
+fn char_counter<T>(arg: T) -> usize {
+ arg.as_ref().chars().count()
+}
+
+// Squares a number using as_mut().
+// TODO: Add the appropriate trait bound.
+fn num_sq<T>(arg: &mut T) {
+ // TODO: Implement the function body.
+ ???
+}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ #[test]
+ fn different_counts() {
+ let s = "Café au lait";
+ assert_ne!(char_counter(s), byte_counter(s));
+ }
+
+ #[test]
+ fn same_counts() {
+ let s = "Cafe au lait";
+ assert_eq!(char_counter(s), byte_counter(s));
+ }
+
+ #[test]
+ fn different_counts_using_string() {
+ let s = String::from("Café au lait");
+ assert_ne!(char_counter(s.clone()), byte_counter(s));
+ }
+
+ #[test]
+ fn same_counts_using_string() {
+ let s = String::from("Cafe au lait");
+ assert_eq!(char_counter(s.clone()), byte_counter(s));
+ }
+
+ #[test]
+ fn mut_box() {
+ let mut num: Box<u32> = Box::new(3);
+ num_sq(&mut num);
+ assert_eq!(*num, 9);
+ }
+}