2019-12-16 13:34:30 +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.
|
|
|
|
|
2020-04-08 09:00:11 +00:00
|
|
|
// I AM NOT DONE
|
2020-07-11 02:01:38 +00:00
|
|
|
|
2019-12-16 13:34:30 +00:00
|
|
|
// Obtain the number of bytes (not characters) in the given argument
|
|
|
|
// 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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let s = "Café au lait";
|
|
|
|
println!("{}", char_counter(s));
|
|
|
|
println!("{}", byte_counter(s));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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 11:51:34 +00: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));
|
|
|
|
}
|
2019-12-24 02:37:09 +00:00
|
|
|
}
|