about summary refs log tree commit diff
path: root/src/libcore
AgeCommit message (Expand)AuthorLines
2012-06-12Rewrite int/uint helper functions to use refsErick Tryzelaar-32/+32
2012-06-12Convert most str and vec fns to slicesErick Tryzelaar-109/+114
2012-06-11core: More stack walkingBrian Anderson-9/+48
2012-06-08core: Don't deadlock on io streams in run::program_outputBrian Anderson-26/+72
2012-06-08Merge pull request #2560 from bstrie/numBrian Anderson-5/+3
2012-06-09Allow multiple `num` impls to be imported at onceBen Striegel-5/+3
2012-06-08Merge pull request #2559 from mozilla/incomingPatrick Walton-3/+18
2012-06-08core: Inline unsigned range functionBrian Anderson-0/+1
2012-06-08Inline `range` for all integral typesBen Striegel-0/+1
2012-06-08core: "inlune" is not an attributePatrick Walton-1/+1
2012-06-08core: Implement string equal natively to save a call into the shape code. Sha...Patrick Walton-2/+17
2012-06-08Convert reinterpret_cast + forget to 'transmute'Brian Anderson-23/+9
2012-06-08core: Add unsafe::transmuteBrian Anderson-1/+28
2012-06-07Use #[cfg(unix)] and #[cfg(windows)] everywhereBrian Anderson-118/+76
2012-06-07core: Remove transitional codeBrian Anderson-11/+0
2012-06-07Merge branch 'incoming'Patrick Walton-2/+126
2012-06-07Add neg() to the num ifacePatrick Walton-0/+6
2012-06-07libcore: Add a num typeclassPatrick Walton-0/+73
2012-06-07Add a Num typeclassPatrick Walton-2/+47
2012-06-07mark addr_or and friends pureNiko Matsakis-2/+2
2012-06-06core: Start on a stack walkerBrian Anderson-1/+55
2012-06-06core: Add os::family. Returns either 'windows' or 'unix'Brian Anderson-1/+9
2012-06-06Merge remote-tracking branch 'mozilla/incoming'Niko Matsakis-0/+40
2012-06-06add some purity annotations in dvec/vec, occasional accessor methodNiko Matsakis-27/+39
2012-06-06miscellaneous pure annotations and other small changes.Niko Matsakis-101/+122
2012-06-06add misc. pure modifiers in coreNiko Matsakis-12/+12
2012-06-06misc. copies in core/syntax to please borrowckNiko Matsakis-2/+2
2012-06-06core: Remove swappable. UnusedBrian Anderson-100/+0
2012-06-06Revert "Revert "Merge pull request #2516 from mozilla/incoming" due to failures"Tim Chevalier-0/+40
2012-06-06Revert "core: Remove swappable. Unused" due to test failuresPatrick Walton-0/+100
2012-06-06Revert "Merge pull request #2516 from mozilla/incoming" due to failuresPatrick Walton-40/+0
2012-06-05stdlib: Introduce ord and eq interfaces. Make std::sort::quick_sort3 use them...Patrick Walton-0/+40
2012-06-05core: Remove swappable. UnusedBrian Anderson-100/+0
2012-06-05rt: Fix iaac_init using wrong type and not seeding correctlyBrian Anderson-0/+11
2012-06-04Make vecs implicitly copyable for all of our projects.Michael Sullivan-0/+2
2012-06-04Machine types are different from int/uint, etc (Issue #2187)Eric Holk-60/+146
2012-06-04Shave off one more string append in a rare case.Graydon Hoare-5/+6
2012-06-04Implement stack-only variants of int/uint str conversion and output.Graydon Hoare-29/+84
2012-06-04core: Don't allow radix 1 in uint::to_strBrian Anderson-2/+22
2012-06-04core: Make uint::to_str fasterBrian Anderson-26/+29
2012-06-03prohibit type parameters in native fns and other minor fixesNiko Matsakis-16/+24
2012-06-02core: Add str::is_alphanumeric fn and methodBrian Anderson-0/+16
2012-06-02make vec fns/methods take imm slices.Niko Matsakis-160/+219
2012-06-02(float) fix some rounding errors when showing as strKevin Cantu-11/+64
2012-06-02add some purity annotations in coreNiko Matsakis-75/+72
2012-06-01Comment only: fix typoTim Chevalier-1/+1
2012-06-01core: Fix handling of 0-padded floats with precision in #fmtBrian Anderson-3/+4
2012-05-31Implement 2 kinds of char / str escaping. Use in rustc. Close #2306.Graydon Hoare-1/+128
2012-05-30core: Update vec_repr to include the box headerBrian Anderson-1/+6
2012-05-30Add xorshift to core::rand, which gave a 3x speedup for graph generation in t...Eric Holk-0/+30