rust/src/libstd
Chris Morgan d9874c0885 Rename the NaN and is_NaN methods to lowercase.
This is for consistency in naming conventions.

- ``std::num::Float::NaN()`` is changed to ``nan()``;
- ``std::num::Float.is_NaN()`` is changed to ``is_nan()``; and
- ``std::num::strconv::NumStrConv::NaN()`` is changed to ``nan()``.

Fixes #9319.
2013-09-19 23:59:51 +10:00
..
fmt Document all of the format! related macros 2013-09-15 01:09:00 -07:00
num Rename the NaN and is_NaN methods to lowercase. 2013-09-19 23:59:51 +10:00
rand std/extra: changing XXX to FIXME; cleanup 2013-08-21 17:17:41 -07:00
rt Implement process bindings to libuv 2013-09-18 13:52:18 -07:00
str Some work on std::ascii: Marked unsafe function unsafe, added moving implementations 2013-09-09 15:07:22 +02:00
task switch Drop to &mut self 2013-09-16 22:19:23 -04:00
unstable Register new snapshots 2013-09-18 11:07:22 -07:00
at_vec.rs std::at_vec: Fix segfault on overflow when resizing ~[@T] 2013-09-17 02:48:00 +02:00
bool.rs std: Add a bunch of Default impls 2013-09-12 18:54:13 -07:00
borrow.rs std::borrow: Use raw pointer comparison for ref_eq 2013-09-18 06:05:06 +02:00
c_str.rs Register new snapshots 2013-09-18 11:07:22 -07:00
cast.rs librustc: Remove &const and *const from the language. 2013-08-27 18:46:51 -07:00
cell.rs librustc: Ensure that type parameters are in the right positions in paths. 2013-08-27 18:47:57 -07:00
char.rs Remove and replace cond! Closes #9282. 2013-09-18 07:34:02 -04:00
cleanup.rs librustc: Remove &const and *const from the language. 2013-08-27 18:46:51 -07:00
clone.rs std: Implement Clone and DeepClone for extern "Rust" fn 2013-07-29 19:43:21 +02:00
cmp.rs Now inline default 'ne' methods 2013-08-30 22:02:24 -04:00
comm.rs Add SharedPort wrapper around rt::comm::SharedPort 2013-09-14 22:50:28 +02:00
condition.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
container.rs container: inline contains_key default method 2013-08-20 22:05:03 -04:00
default.rs std: Add a bunch of Default impls 2013-09-12 18:54:13 -07:00
either.rs std: Add ToEither/IntoEither/AsEither 2013-09-12 18:54:12 -07:00
from_str.rs Add from_str docs 2013-09-05 00:58:12 -04:00
hash.rs rename std::iterator to std::iter 2013-09-09 03:21:46 -04:00
hashmap.rs auto merge of #9115 : erickt/rust/master, r=erickt 2013-09-14 00:01:04 -07:00
io.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
iter.rs iter: add the edge case tests for range too 2013-09-15 00:54:32 -04:00
kinds.rs kinds: update documentation 2013-08-15 21:12:34 -04:00
libc.rs fix compilation errors of mips target 2013-09-18 10:10:32 +08:00
local_data.rs Improve the local_data docs slightly 2013-09-12 23:26:06 -07:00
logging.rs Register new snapshots 2013-09-18 11:07:22 -07:00
macros.rs Define cfg(rtopt) when optimizing. Turn off runtime sanity checks 2013-08-23 21:19:59 -07:00
managed.rs std: implement Total{Ord,Eq} for pointers. 2013-08-04 19:46:52 +10:00
ops.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
option.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
os.rs auto merge of #9296 : alexcrichton/rust/snapshots, r=cmr 2013-09-18 11:46:37 -07:00
owned.rs std: implement Total{Ord,Eq} for pointers. 2013-08-04 19:46:52 +10:00
path.rs rename std::iterator to std::iter 2013-09-09 03:21:46 -04:00
prelude.rs Add an SendStr type 2013-09-16 16:57:50 +02:00
ptr.rs Register new snapshots 2013-09-18 11:07:22 -07:00
rand.rs Register new snapshots 2013-09-18 11:07:22 -07:00
reflect.rs repr: handle tuple structs sanely 2013-09-02 04:10:56 -04:00
repr.rs auto merge of #9065 : thestinger/rust/iter, r=alexcrichton 2013-09-09 00:26:07 -07:00
result.rs std: Rename {Option,Result}::chain{,_err}* to {and_then,or_else} 2013-09-12 18:54:13 -07:00
run.rs auto merge of #9280 : alexcrichton/rust/less-c++, r=brson 2013-09-18 22:15:59 -07:00
select.rs auto merge of #9062 : blake2-ppc/rust/vec-iterator, r=alexcrichton 2013-09-09 21:31:03 -07:00
send_str.rs Corrected a few small style issues 2013-09-16 17:45:24 +02:00
std.rs Register new snapshots 2013-09-18 11:07:22 -07:00
str.rs std: Fix an invalid read in from_c_multistring 2013-09-17 21:25:18 -07:00
sys.rs Register new snapshots 2013-09-18 11:07:22 -07:00
to_bytes.rs std: fix a warning 2013-09-12 18:54:12 -07:00
to_str.rs rename std::iterator to std::iter 2013-09-09 03:21:46 -04:00
trie.rs Use std::iter::range_step 2013-09-15 00:41:34 -04:00
tuple.rs std: Add a bunch of Default impls 2013-09-12 18:54:13 -07:00
unicode.rs rename std::iterator to std::iter 2013-09-09 03:21:46 -04:00
unit.rs std: Add a bunch of Default impls 2013-09-12 18:54:13 -07:00
util.rs switch Drop to &mut self 2013-09-16 22:19:23 -04:00
vec.rs std::at_vec: Fix segfault on overflow when resizing ~[@T] 2013-09-17 02:48:00 +02:00