Function std::bool::all_values

pub fn all_values(blk: &fn(v: bool))

Iterates over all truth values, passing them to the given block.

There are no guarantees about the order values will be given.

Examples

do std::bool::all_values |x: bool| {
    println(x.to_str())
}