summaryrefslogtreecommitdiff
path: root/exercises/conversions
diff options
context:
space:
mode:
authorTK Buristrakul <tkburis@gmail.com>2022-11-24 19:39:54 +0000
committerTK Buristrakul <tkburis@gmail.com>2022-11-24 19:39:54 +0000
commita315f2fefb963c2facfd80efe336b8be3b8f6bfa (patch)
tree149b684935e45322f82453cba52e36cd8be120a5 /exercises/conversions
parentbe0b7e084ed5713d74c7f1bacdfd563fb2145a95 (diff)
chore: added more descriptive TODOs
Diffstat (limited to 'exercises/conversions')
-rw-r--r--exercises/conversions/as_ref_mut.rs13
1 files changed, 7 insertions, 6 deletions
diff --git a/exercises/conversions/as_ref_mut.rs b/exercises/conversions/as_ref_mut.rs
index c9eed7d..e6a9d11 100644
--- a/exercises/conversions/as_ref_mut.rs
+++ b/exercises/conversions/as_ref_mut.rs
@@ -5,21 +5,22 @@
// I AM NOT DONE
-// Obtain the number of bytes (not characters) in the given argument
-// Add the AsRef trait appropriately as a trait bound
+// 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
-// Add the AsRef trait appropriately as a trait bound
+// 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(). Add the trait bound as is appropriate and
-// implement the function body.
+// Squares a number using as_mut().
+// TODO: Add the appropriate trait bound.
fn num_sq<T>(arg: &mut T) {
+ // TODO: Implement the function body.
???
}