2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
//! Boolean logic
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2013-01-08 21:37:25 -06:00
|
|
|
use option::{None, Option, Some};
|
2013-03-06 12:05:59 -06:00
|
|
|
use from_str::FromStr;
|
|
|
|
|
2013-02-28 10:57:33 -06:00
|
|
|
#[cfg(notest)] use cmp;
|
2012-08-27 18:26:35 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Negation / inverse
|
2012-09-26 16:54:26 -05:00
|
|
|
pub pure fn not(v: bool) -> bool { !v }
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Conjunction
|
2012-09-26 16:54:26 -05:00
|
|
|
pub pure fn and(a: bool, b: bool) -> bool { a && b }
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Disjunction
|
2012-09-26 16:54:26 -05:00
|
|
|
pub pure fn or(a: bool, b: bool) -> bool { a || b }
|
2012-03-10 20:01:01 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
|
|
|
* Exclusive or
|
|
|
|
*
|
|
|
|
* Identical to `or(and(a, not(b)), and(not(a), b))`
|
|
|
|
*/
|
2012-09-26 16:54:26 -05:00
|
|
|
pub pure fn xor(a: bool, b: bool) -> bool { (a && !b) || (!a && b) }
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Implication in the logic, i.e. from `a` follows `b`
|
2012-09-26 16:54:26 -05:00
|
|
|
pub pure fn implies(a: bool, b: bool) -> bool { !a || b }
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// true if truth values `a` and `b` are indistinguishable in the logic
|
2012-09-26 16:54:26 -05:00
|
|
|
pub pure fn eq(a: bool, b: bool) -> bool { a == b }
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// true if truth values `a` and `b` are distinguishable in the logic
|
2012-09-26 16:54:26 -05:00
|
|
|
pub pure fn ne(a: bool, b: bool) -> bool { a != b }
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// true if `v` represents truth in the logic
|
2012-09-26 16:54:26 -05:00
|
|
|
pub pure fn is_true(v: bool) -> bool { v }
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// true if `v` represents falsehood in the logic
|
2012-09-26 16:54:26 -05:00
|
|
|
pub pure fn is_false(v: bool) -> bool { !v }
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Parse logic value from `s`
|
2013-03-06 12:05:59 -06:00
|
|
|
impl FromStr for bool {
|
|
|
|
static pure fn from_str(s: &str) -> Option<bool> {
|
|
|
|
if s == "true" {
|
|
|
|
Some(true)
|
|
|
|
} else if s == "false" {
|
|
|
|
Some(false)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Convert `v` into a string
|
2012-09-26 16:54:26 -05:00
|
|
|
pub pure fn to_str(v: bool) -> ~str { if v { ~"true" } else { ~"false" } }
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
|
|
|
* Iterates over all truth values by passing them to `blk` in an unspecified
|
|
|
|
* order
|
|
|
|
*/
|
2012-09-26 16:54:26 -05:00
|
|
|
pub fn all_values(blk: fn(v: bool)) {
|
2011-12-13 18:25:51 -06:00
|
|
|
blk(true);
|
|
|
|
blk(false);
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// converts truth value to an 8 bit byte
|
2012-09-26 16:54:26 -05:00
|
|
|
pub pure fn to_bit(v: bool) -> u8 { if v { 1u8 } else { 0u8 } }
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-11-30 02:47:45 -06:00
|
|
|
#[cfg(notest)]
|
2013-02-14 13:47:00 -06:00
|
|
|
impl cmp::Eq for bool {
|
2012-11-14 20:59:30 -06:00
|
|
|
pure fn eq(&self, other: &bool) -> bool { (*self) == (*other) }
|
|
|
|
pure fn ne(&self, other: &bool) -> bool { (*self) != (*other) }
|
2012-09-19 20:00:26 -05:00
|
|
|
}
|
2012-08-27 18:26:35 -05:00
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
#[test]
|
2012-09-26 16:54:26 -05:00
|
|
|
pub fn test_bool_from_str() {
|
2013-03-06 12:05:59 -06:00
|
|
|
use from_str::FromStr;
|
|
|
|
|
2012-06-30 18:19:07 -05:00
|
|
|
do all_values |v| {
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!(Some(v) == FromStr::from_str(to_str(v)))
|
2012-01-17 19:28:21 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-09-26 16:54:26 -05:00
|
|
|
pub fn test_bool_to_str() {
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!(to_str(false) == ~"false");
|
|
|
|
fail_unless!(to_str(true) == ~"true");
|
2012-01-17 19:28:21 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-09-26 16:54:26 -05:00
|
|
|
pub fn test_bool_to_bit() {
|
2012-06-30 18:19:07 -05:00
|
|
|
do all_values |v| {
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!(to_bit(v) == if is_true(v) { 1u8 } else { 0u8 });
|
2012-01-17 19:28:21 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-13 18:25:51 -06:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust;
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|