summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Collapse)AuthorLines
2012-09-06Refactor trans to replace lvalue and friends with Datum.Niko Matsakis-12/+16
Also: - report illegal move/ref combos whether or not ref comes first - commented out fix for #3387, too restrictive and causes an ICE
2012-09-05rustc: "import" -> "use" in .rc filesPatrick Walton-1/+1
2012-09-04std: Convert test to camel caseBrian Anderson-66/+65
2012-09-04WhitespaceBrian Anderson-1/+0
2012-09-04std: Remove struct ctorsBrian Anderson-10/+64
2012-09-04std: Camel case smallintmapBrian Anderson-13/+12
2012-09-04std: Camel case sortBrian Anderson-9/+8
2012-09-04std: Camel case treemapBrian Anderson-20/+19
2012-09-04std: Camel case listBrian Anderson-49/+48
2012-09-04Use struct+impl syntax instead of the (deprecated) struct with embedded ↵Gareth Daniel Smith-151/+185
methods syntax. Also standardise the comment indentation and add some whitespace between items.
2012-09-04fix two issues with the exports: Gareth Daniel Smith-22/+1
1. from_bytes, from_bools and from_fn were not exported but should have been. 2. lots of stuff that either didnt exist or didnt need exporting was being exported.
2012-09-04add additional Bitv constructors (as proposed in issue #2964)Gareth Daniel Smith-0/+99
2012-09-04Merge pull request #3383 from crabtw/fbsdBrian Anderson-10/+0
use native log2 function and enable freebsd tests in uv_ll
2012-09-04Demode libstd/net_ip.rsKevin Cantu-16/+18
2012-09-04Demode libstd/net_url.rsKevin Cantu-17/+20
2012-09-04Demode treemap.rsKevin Cantu-3/+5
2012-09-04Confirm demoding of smallintmap.rsKevin Cantu-1/+4
2012-09-04Confirm demoding of term.rsKevin Cantu-0/+2
2012-09-04std: Fix net::url constructor namesBrian Anderson-5/+5
2012-09-04libstd: "import" -> "use"Patrick Walton-135/+126
2012-09-05use native log2 function and enable freebsd tests in uv_llJyun-Yan You-10/+0
2012-09-03libstd: Make ToBase64 take slicesPatrick Walton-2/+2
2012-09-03libstd: Make URL parsing not require unique strings, and have URLs implement ↵Patrick Walton-7/+19
FromStr. I considered changing FromStr to return a Result<E> parameterized over an error type E, but I decided that was premature abstraction. If you want the URL parsing error, call url::from_str() directly.
2012-09-03libstd: Export query_to_str from net::urlPatrick Walton-0/+1
2012-09-03libstd: Implement a Sort trait.Patrick Walton-0/+9
This depends on the previous fix to not assert.
2012-09-03libstd: Export the url() constructor from net_urlPatrick Walton-1/+1
2012-09-03libstd: Make net_url::encode no longer require a unique stringPatrick Walton-27/+27
2012-09-02libstd: Make URLs structsPatrick Walton-3/+3
2012-09-02Camel case core::opsBrian Anderson-4/+4
2012-09-02std: Camel case the rope moduleBrian Anderson-143/+142
2012-09-02std: Allow camel case for list typeBrian Anderson-0/+1
2012-09-02std: warn(non_camel_case_types) everywhere. still some exceptionsBrian Anderson-46/+10
2012-09-01Remove the 'to' keywordBrian Anderson-20/+20
2012-09-01Demode reinterpret_castBrian Anderson-15/+15
2012-09-01Demode sort.rsKevin Cantu-11/+14
2012-09-01Demode fun_treemap.rsKevin Cantu-3/+5
2012-09-01Confirm demode of map.rs and prettyprint.rsKevin Cantu-1/+2
2012-09-01Confirm demode of base64.rsKevin Cantu-0/+2
2012-09-01Confirm demode of cell.rsKevin Cantu-0/+2
2012-09-01Confirm demode of unicode.rsKevin Cantu-1/+3
2012-08-31Remove type annotation that is no longer necessaryTim Chevalier-2/+1
Closes #2617
2012-08-31Make utility funs in core::int, core::uint, etc. not by-referenceTim Chevalier-12/+12
Closes #3302
2012-08-31std: Camel case net modulesBrian Anderson-252/+256
2012-08-31Remove deprecated modes from list.rs (and temporarily delete list::push)Kevin Cantu-13/+26
2012-08-31Remove deprecated modes from rope.rsKevin Cantu-22/+27
2012-08-31Remove deprecated modes from dbg.rsKevin Cantu-3/+5
2012-08-31Remove deprecated modes from FuzzyEq in cmp.rsKevin Cantu-10/+12
This commit may require changes to the following Servo files: * rust-geom/matrix.rs * servo/platform/osmain.rs * rust-layers/layers.rs * rust-geom/matrix.rs
2012-08-31Various JSON pretty printing tweaksKevin Cantu-9/+31
2012-08-31Fix JSON parsing of unicode escapesKevin Cantu-5/+13
2012-08-31Pretty print JSON: sorting object keysKevin Cantu-6/+19