rust/src/librustdoc
bors e388a80c23 auto merge of #7117 : jensnockert/rust/freestanding, r=cmr
The free-standing functions in f32, f64, i8, i16, i32, i64, u8, u16,
u32, u64, float, int, and uint are replaced with generic functions in
num instead.

This means that instead of having to know everywhere what the type is, like

~~~
f64::sin(x)
~~~

You can simply write code that uses the type-generic versions in num instead, this works for all types that implement the corresponding trait in num.

~~~
num::sin(x)
~~~

Note 1: If you were previously using any of those functions, just replace them
with the corresponding function with the same name in num.

Note 2: If you were using a function that corresponds to an operator, use the
operator instead.

Note 3: This is just https://github.com/mozilla/rust/pull/7090 reopened against master.
2013-07-09 13:34:50 -07:00
..
astsrv.rs Great renaming: propagate throughout the rest of the codebase 2013-06-29 11:20:02 -04:00
attr_parser.rs remove some method resolve workarounds 2013-07-07 19:51:13 -04:00
attr_pass.rs Remove vec::{map, mapi, zip_map} and the methods, except for .map, since this 2013-06-30 21:59:44 +10:00
config.rs Great renaming: propagate throughout the rest of the codebase 2013-06-29 11:20:02 -04:00
demo.rs rustc: add a lint to enforce uppercase statics. 2013-07-01 17:52:57 +10:00
desc_to_brief_pass.rs Remove standalone comparison functions in vec, make the trait impls better. 2013-07-04 00:46:50 +10:00
doc.rs Remove vec::{filter, filtered, filter_map, filter_mapped}, replaced by iterators. 2013-07-04 00:46:49 +10:00
escape_pass.rs Silence some warnings. 2013-06-12 12:21:05 +10:00
extract.rs Remove vec::{filter, filtered, filter_map, filter_mapped}, replaced by iterators. 2013-07-04 00:46:49 +10:00
fold.rs Remove vec::{map, mapi, zip_map} and the methods, except for .map, since this 2013-06-30 21:59:44 +10:00
markdown_index_pass.rs Great renaming: propagate throughout the rest of the codebase 2013-06-29 11:20:02 -04:00
markdown_pass.rs Remove standalone comparison functions in vec, make the trait impls better. 2013-07-04 00:46:50 +10:00
markdown_writer.rs Remove standalone comparison functions in vec, make the trait impls better. 2013-07-04 00:46:50 +10:00
page_pass.rs Remove vec::{filter, filtered, filter_map, filter_mapped}, replaced by iterators. 2013-07-04 00:46:49 +10:00
parse.rs Great renaming: propagate throughout the rest of the codebase 2013-06-29 11:20:02 -04:00
pass.rs Great renaming: propagate throughout the rest of the codebase 2013-06-29 11:20:02 -04:00
path_pass.rs Great renaming: propagate throughout the rest of the codebase 2013-06-29 11:20:02 -04:00
prune_hidden_pass.rs Remove vec::{filter, filtered, filter_map, filter_mapped}, replaced by iterators. 2013-07-04 00:46:49 +10:00
prune_private_pass.rs Remove vec::{filter, filtered, filter_map, filter_mapped}, replaced by iterators. 2013-07-04 00:46:49 +10:00
rustdoc.rs Bump version numbers to 0.8-pre 2013-07-08 10:25:45 -07:00
sectionalize_pass.rs Great renaming: propagate throughout the rest of the codebase 2013-06-29 11:20:02 -04:00
sort_item_name_pass.rs Use assert_eq! rather than assert! where possible 2013-05-19 08:16:02 -04:00
sort_item_type_pass.rs Remove all uses of pub impl. rs=style 2013-06-01 09:18:27 -07:00
sort_pass.rs librustdoc: Rename std to extra. 2013-05-22 21:57:08 -07:00
text_pass.rs Great renaming: propagate throughout the rest of the codebase 2013-06-29 11:20:02 -04:00
trim_pass.rs Great renaming: propagate throughout the rest of the codebase 2013-06-29 11:20:02 -04:00
tystr_pass.rs Fix rustdoc and rusti 2013-07-07 22:51:10 +12:00
unindent_pass.rs Replaces the free-standing functions in f32, &c. 2013-07-08 18:05:17 +02:00
util.rs Great renaming: propagate throughout the rest of the codebase 2013-06-29 11:20:02 -04:00