Function std::bool::not

pub fn not(v: bool) -> bool

Negation of a boolean value.

Examples

rusti> std::bool::not(true)
false
rusti> std::bool::not(false)
true