macro_rules! is_false {
() => { ... };
}Expand description
Creates a closure that negates a Boolean input.
The generated closure returns !x and can be passed directly to predicate
combinators.
macro_rules! is_false {
() => { ... };
}Creates a closure that negates a Boolean input.
The generated closure returns !x and can be passed directly to predicate
combinators.