rust/src/libcore/bool.rs
Brian Anderson e8f7bb0db1 core: Cleanup bool module
Instead of defining a type for bool, just use the bool type directly in order
to be more consistent with other modules. Cleanup the comments a bit.
2012-03-10 18:01:01 -08:00

93 lines
2.1 KiB
Rust

// -*- rust -*-
#[doc = "Boolean logic"];
export not, and, or, xor, implies;
export eq, ne, is_true, is_false;
export from_str, to_str, all_values, to_bit;
#[doc = "Negation / inverse"]
pure fn not(v: bool) -> bool { !v }
#[doc = "Conjunction"]
pure fn and(a: bool, b: bool) -> bool { a && b }
#[doc = "Disjunction"]
pure fn or(a: bool, b: bool) -> bool { a || b }
#[doc = "
Exclusive or
Identical to `or(and(a, not(b)), and(not(a), b))`
"]
pure fn xor(a: bool, b: bool) -> bool { (a && !b) || (!a && b) }
#[doc = "Implication in the logic, i.e. from `a` follows `b`"]
pure fn implies(a: bool, b: bool) -> bool { !a || b }
#[doc = "
true if truth values `a` and `b` are indistinguishable in the logic
"]
pure fn eq(a: bool, b: bool) -> bool { a == b }
#[doc = "true if truth values `a` and `b` are distinguishable in the logic"]
pure fn ne(a: bool, b: bool) -> bool { a != b }
#[doc = "true if `v` represents truth in the logic"]
pure fn is_true(v: bool) -> bool { v }
#[doc = "true if `v` represents falsehood in the logic"]
pure fn is_false(v: bool) -> bool { !v }
#[doc = "Parse logic value from `s`"]
pure fn from_str(s: str) -> option<bool> {
alt check s {
"true" { some(true) }
"false" { some(false) }
_ { none }
}
}
#[doc = "Convert `v` into a string"]
pure fn to_str(v: bool) -> str { if v { "true" } else { "false" } }
#[doc = "
Iterates over all truth values by passing them to `blk` in an unspecified
order
"]
fn all_values(blk: fn(v: bool)) {
blk(true);
blk(false);
}
#[doc = "converts truth value to an 8 bit byte"]
pure fn to_bit(v: bool) -> u8 { if v { 1u8 } else { 0u8 } }
#[test]
fn test_bool_from_str() {
all_values { |v|
assert some(v) == from_str(bool::to_str(v))
}
}
#[test]
fn test_bool_to_str() {
assert to_str(false) == "false";
assert to_str(true) == "true";
}
#[test]
fn test_bool_to_bit() {
all_values { |v|
assert to_bit(v) == if is_true(v) { 1u8 } else { 0u8 };
}
}
// Local Variables:
// mode: rust;
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End: