rustlings/exercises/23_conversions/as_ref_mut.rs

60 lines
1.5 KiB
Rust
Raw Normal View History

2024-10-28 20:46:17 +00:00
// 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.
// Obtain the number of bytes (not characters) in the given argument.
2024-11-09 11:43:57 +00:00
fn byte_counter<T>(arg: T) -> usize where T: AsRef<str>
{
2024-10-28 20:46:17 +00:00
arg.as_ref().as_bytes().len()
}
// Obtain the number of characters (not bytes) in the given argument.
2024-11-09 11:43:57 +00:00
fn char_counter<T: AsRef<str>>(arg: T) -> usize {
2024-10-28 20:46:17 +00:00
arg.as_ref().chars().count()
}
// Squares a number using `as_mut()`.
2024-11-09 11:43:57 +00:00
fn num_sq<T: AsMut<u32>>(arg: &mut T) {
*arg.as_mut() = arg.as_mut().pow(2);
2024-10-28 20:46:17 +00:00
}
fn main() {
// You can optionally experiment here.
}
#[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);
}
}