1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/// Negates the boolean value. /// /// * `negate` - The value to be negated. pub(crate) fn negate(value: bool) -> bool { !value } #[cfg(test)] mod tests { use super::*; #[test] fn can_negate_values() { assert!(negate(false)); } }