Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions src/libstd/bool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ use from_str::FromStr;
*
* # Examples
* ~~~
* rusti> core::bool::not(true)
* rusti> std::bool::not(true)
* false
* ~~~
* rusti> core::bool::not(false)
* rusti> std::bool::not(false)
* true
* ~~~
*/
Expand All @@ -58,10 +58,10 @@ pub fn not(v: bool) -> bool { !v }
*
* # Examples
* ~~~
* rusti> core::bool::and(true, false)
* rusti> std::bool::and(true, false)
* false
* ~~~
* rusti> core::bool::and(true, true)
* rusti> std::bool::and(true, true)
* true
* ~~~
*/
Expand All @@ -72,10 +72,10 @@ pub fn and(a: bool, b: bool) -> bool { a && b }
*
* # Examples
* ~~~
* rusti> core::bool::or(true, false)
* rusti> std::bool::or(true, false)
* true
* ~~~
* rusti> core::bool::or(false, false)
* rusti> std::bool::or(false, false)
* false
* ~~~
*/
Expand All @@ -88,10 +88,10 @@ pub fn or(a: bool, b: bool) -> bool { a || b }
*
* # Examples
* ~~~
* rusti> core::bool::xor(true, false)
* rusti> std::bool::xor(true, false)
* true
* ~~~
* rusti> core::bool::xor(true, true)
* rusti> std::bool::xor(true, true)
* false
* ~~~
*/
Expand All @@ -106,10 +106,10 @@ pub fn xor(a: bool, b: bool) -> bool { (a && !b) || (!a && b) }
*
* # Examples
* ~~~
* rusti> core::bool::implies(true, true)
* rusti> std::bool::implies(true, true)
* true
* ~~~
* rusti> core::bool::implies(true, false)
* rusti> std::bool::implies(true, false)
* false
* ~~~
*/
Expand All @@ -122,10 +122,10 @@ pub fn implies(a: bool, b: bool) -> bool { !a || b }
*
* # Examples
* ~~~
* rusti> core::bool::eq(false, true)
* rusti> std::bool::eq(false, true)
* false
* ~~~
* rusti> core::bool::eq(false, false)
* rusti> std::bool::eq(false, false)
* true
* ~~~
*/
Expand All @@ -138,10 +138,10 @@ pub fn eq(a: bool, b: bool) -> bool { a == b }
*
* # Examples
* ~~~
* rusti> core::bool::ne(false, true)
* rusti> std::bool::ne(false, true)
* true
* ~~~
* rusti> core::bool::ne(false, false)
* rusti> std::bool::ne(false, false)
* false
* ~~~
*/
Expand All @@ -152,10 +152,10 @@ pub fn ne(a: bool, b: bool) -> bool { a != b }
*
* # Examples
* ~~~
* rusti> core::bool::is_true(true)
* rusti> std::bool::is_true(true)
* true
* ~~~
* rusti> core::bool::is_true(false)
* rusti> std::bool::is_true(false)
* false
* ~~~
*/
Expand All @@ -166,10 +166,10 @@ pub fn is_true(v: bool) -> bool { v }
*
* # Examples
* ~~~
* rusti> core::bool::is_false(false)
* rusti> std::bool::is_false(false)
* true
* ~~~
* rusti> core::bool::is_false(true)
* rusti> std::bool::is_false(true)
* false
* ~~~
*/
Expand Down Expand Up @@ -223,8 +223,8 @@ pub fn to_str(v: bool) -> ~str { if v { ~"true" } else { ~"false" } }
*
* # Examples
* ~~~
* do core::bool::all_values |x: bool| {
* println(core::bool::to_str(x));
* do std::bool::all_values |x: bool| {
* println(std::bool::to_str(x));
* }
* ~~~
*/
Expand Down