more formatting

This commit is contained in:
Trevor Merritt 2026-05-03 08:50:55 -04:00
parent e3b8939082
commit bdeefdb3b6

View File

@ -6,3 +6,6 @@ pub fn bool_to_string(b: bool) -> String {
}
}
pub fn bool_array_to_string(b: &[bool]) -> String {
b.iter().map(|b| bool_to_string(*b)).collect::<Vec<String>>().join("")
}