Cargo formatting

This commit is contained in:
kdeng00
2024-05-26 20:35:55 -04:00
parent a3c0565863
commit c0dc1eb78c
10 changed files with 44 additions and 56 deletions
+3 -6
View File
@@ -27,12 +27,9 @@ impl Checks {
}
// TODO: Implement
pub fn index_of_item_in_container<F>(
container: &String,
item: &char,
func: F,
) -> i32
where F: Fn(&char, &char) -> bool,
pub fn index_of_item_in_container<F>(container: &String, item: &char, func: F) -> i32
where
F: Fn(&char, &char) -> bool,
{
let mut index = -1;