2023-05-29 18:39:08 +01:00
|
|
|
// 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.
|
2019-12-16 13:34:30 +00:00
|
|
|
|
2020-04-08 10:00:11 +01:00
|
|
|
// I AM NOT DONE
|
2020-07-11 03:01:38 +01:00
|
|
|
|
2022-11-24 19:39:54 +00:00
|
|
|
// Obtain the number of bytes (not characters) in the given argument.
|
|
|
|
// TODO: Add the AsRef trait appropriately as a trait bound.
|
2019-12-16 13:34:30 +00:00
|
|
|
fn byte_counter<T>(arg: T) -> usize {
|
|
|
|
arg.as_ref().as_bytes().len()
|
|
|
|
}
|
|
|
|
|
2022-11-24 19:39:54 +00:00
|
|
|
// Obtain the number of characters (not bytes) in the given argument.
|
|
|
|
// TODO: Add the AsRef trait appropriately as a trait bound.
|
2019-12-16 13:34:30 +00:00
|
|
|
fn char_counter<T>(arg: T) -> usize {
|
2019-12-24 02:37:09 +00:00
|
|
|
arg.as_ref().chars().count()
|
2019-12-16 13:34:30 +00:00
|
|
|
}
|
|
|
|
|
2022-11-24 19:39:54 +00:00
|
|
|
// Squares a number using as_mut().
|
|
|
|
// TODO: Add the appropriate trait bound.
|
2022-07-15 11:50:01 +01:00
|
|
|
fn num_sq<T>(arg: &mut T) {
|
2022-11-24 19:39:54 +00:00
|
|
|
// TODO: Implement the function body.
|
2022-07-15 11:50:01 +01:00
|
|
|
???
|
2019-12-16 13:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn different_counts() {
|
|
|
|
let s = "Café au lait";
|
|
|
|
assert_ne!(char_counter(s), byte_counter(s));
|
|
|
|
}
|
2019-12-24 02:37:09 +00:00
|
|
|
|
|
|
|
#[test]
|
2019-12-16 13:34:30 +00:00
|
|
|
fn same_counts() {
|
|
|
|
let s = "Cafe au lait";
|
|
|
|
assert_eq!(char_counter(s), byte_counter(s));
|
|
|
|
}
|
2020-06-08 12:51:34 +01:00
|
|
|
|
|
|
|
#[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));
|
|
|
|
}
|
2022-07-15 11:50:01 +01:00
|
|
|
|
|
|
|
#[test]
|
2023-09-14 16:10:06 +01:00
|
|
|
fn mut_box() {
|
2022-07-15 11:50:01 +01:00
|
|
|
let mut num: Box<u32> = Box::new(3);
|
2022-10-21 01:45:31 +01:00
|
|
|
num_sq(&mut num);
|
2022-07-15 11:50:01 +01:00
|
|
|
assert_eq!(*num, 9);
|
|
|
|
}
|
2019-12-24 02:37:09 +00:00
|
|
|
}
|