about summary refs log tree commit diff
path: root/src/libcore/to_str.rs
AgeCommit message (Expand)AuthorLines
2013-05-13Remove re-exports from libcore/core.rcAlex Crichton-1/+2
2013-05-12Add use declaration for container::SetSamuel Chase-1/+1
2013-05-11Fix errors in test_hashset().Samuel Chase-3/+4
2013-05-11Use acc.push_str() instead of str::push_str(..)Samuel Chase-12/+24
2013-05-11Add test: test_hashset()Samuel Chase-0/+14
2013-05-11Add str representation for HashSet.Samuel Chase-0/+18
2013-05-11Remove extra space between key and value.Samuel Chase-6/+9
2013-05-11All tests, including newly added test_hashmap() pass. The empty Hash Table do...Samuel Chase-9/+11
2013-05-11Removed test_hashmap() for the time, being. All tests pass with make check.Samuel Chase-10/+11
2013-05-11Add to_str() for HashMaps, and some basic tests as well.Samuel Chase-0/+36
2013-04-20Added Ascii typeMarvin Löbel-0/+6
2013-04-08Removing no longer needed unsafe blocksAlex Crichton-42/+21
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-16/+16
2013-03-26librustc: Modify all code to use new lifetime binder syntaxPatrick Walton-1/+1
2013-03-26core: As per #4898, finish impls for one-tuplesTim Chevalier-1/+10
2013-03-22libcore: Remove `pure` from libcore. rs=depurePatrick Walton-8/+8
2013-03-21Switched over substr and trim functions in str to be non-allocating, temporar...Marvin Löbel-12/+0
2013-03-18librustc: Convert all uses of old lifetime notation to new lifetime notation....Patrick Walton-2/+2
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-17/+17
2013-03-06Add manual &self/ and &static/ and /&self declarations thatNiko Matsakis-2/+2
2013-03-04Remove unused imports throughout src/Alex Crichton-2/+0
2013-02-27auto merge of #5098 : pkgw/rust/pr/issue4869, r=brsonbors-21/+5
2013-02-27Added ToStr implementations for &[T] and @[T]Marvin Löbel-0/+43
2013-02-23libcore: remove default to_str implementations for pointer typesPeter Williams-21/+5
2013-02-20librustc: Separate most trait bounds with '+'. rs=plussingPatrick Walton-5/+5
2013-02-18rustc: For one-tuples, make parsing and printing the type workTim Chevalier-0/+2
2013-02-15libcore: Get rid of `move`.Luqman Aden-1/+1
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip...Patrick Walton-10/+10
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-4/+0
2013-02-03core: convert ToStr::to_str to take explicit &selfErick Tryzelaar-18/+34
2013-02-03Converted the floating point types to the new string conversion functions.Marvin Löbel-12/+0
2013-02-03Converted libcore/uint-template.rs to the new string functions.Marvin Löbel-20/+0
2013-02-03Converted libcore/int-template.rs to the new string functions.Marvin Löbel-20/+0
2013-01-30rustc: make integral type inference transactional, close #3211, close #4401, ...Graydon Hoare-2/+2
2013-01-23libsyntax: Remove `fn() unsafe { ... }`. r=graydonPatrick Walton-10/+14
2013-01-14Inlining methods/functions in core.gifnksm-0/+23
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-0/+1
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the neare...Patrick Walton-1/+0
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-0/+1
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ...Patrick Walton-16/+19
2012-12-13librustc: Make `use` statements crate-relative by default. r=brsonPatrick Walton-1/+1
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-10-11Make to_str pure and fix const parameters for str-mutating functionsTim Chevalier-25/+27
2012-09-28De-export logging, to_str, to_bytes, from_str, util. Part of #3583.Graydon Hoare-2/+1
2012-09-21libcore: De-mode strPatrick Walton-3/+3
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under #[l...Graydon Hoare-0/+1
2012-09-19core: Clean up crate docs and give all mods a brief descriptionBrian Anderson-0/+6
2012-09-18Revert "replace explicit calls to vec::each with vec::each_ref, partially dem...Niko Matsakis-1/+1
2012-09-18replace explicit calls to vec::each with vec::each_ref, partially demode strNiko Matsakis-1/+1
2012-09-12libcore: Add some visitor-based logging functionalityPatrick Walton-0/+6