diff options
| author | bors <bors@rust-lang.org> | 2013-05-27 07:08:04 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-05-27 07:08:04 -0700 |
| commit | 3941f78a1bfb3ecf077dd782e5d03ea7fafcad86 (patch) | |
| tree | e71dc7878c097a4ec2d9a3951c41c0da99271389 /src/libstd | |
| parent | b7294e1f1bc390ffe940e01d98d01f4f26ce895c (diff) | |
| parent | e2fcb92a6d5c92c6beddec92fa0514d2c5de0fab (diff) | |
| download | rust-3941f78a1bfb3ecf077dd782e5d03ea7fafcad86.tar.gz rust-3941f78a1bfb3ecf077dd782e5d03ea7fafcad86.zip | |
auto merge of #6763 : steveklabnik/rust/core_to_std, r=thestinger
When I submitted #6748 yesterday, I used the old name. r? @thestinger
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/bool.rs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/libstd/bool.rs b/src/libstd/bool.rs index 532e470e595..f6f29534f94 100644 --- a/src/libstd/bool.rs +++ b/src/libstd/bool.rs @@ -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 * ~~~ */ @@ -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 * ~~~ */ @@ -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 * ~~~ */ @@ -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 * ~~~ */ @@ -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 * ~~~ */ @@ -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 * ~~~ */ @@ -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 * ~~~ */ @@ -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 * ~~~ */ @@ -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 * ~~~ */ @@ -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)); * } * ~~~ */ |
