1. 08 2月, 2014 1 次提交
  2. 04 2月, 2014 4 次提交
  3. 01 2月, 2014 1 次提交
  4. 29 1月, 2014 1 次提交
  5. 27 1月, 2014 1 次提交
  6. 26 1月, 2014 1 次提交
  7. 25 1月, 2014 1 次提交
    • C
      Uppercase numeric constants · 988e4f0a
      Chris Wong 提交于
      The following are renamed:
      
      * `min_value` => `MIN`
      * `max_value` => `MAX`
      * `bits` => `BITS`
      * `bytes` => `BYTES`
      
      Fixes #10010.
      988e4f0a
  8. 22 1月, 2014 2 次提交
  9. 18 1月, 2014 2 次提交
    • P
      Rename iterators for consistency · 3fd8c8b3
      Palmer Cox 提交于
      Rename existing iterators to get rid of the Iterator suffix and to
      give them names that better describe the things being iterated over.
      3fd8c8b3
    • A
      Tweak the interface of std::io · 295b46fc
      Alex Crichton 提交于
      * Reexport io::mem and io::buffered structs directly under io, make mem/buffered
        private modules
      * Remove with_mem_writer
      * Remove DEFAULT_CAPACITY and use DEFAULT_BUF_SIZE (in io::buffered)
      295b46fc
  10. 15 1月, 2014 1 次提交
  11. 11 1月, 2014 1 次提交
    • B
      Remove re-exports of std::io::stdio::{print, println} in the prelude. · 4fc0452a
      Brendan Zabarauskas 提交于
      The `print!` and `println!` macros are now the preferred method of printing, and so there is no reason to export the `stdio` functions in the prelude. The functions have also been replaced by their macro counterparts in the tutorial and other documentation so that newcomers don't get confused about what they should be using.
      4fc0452a
  12. 10 1月, 2014 1 次提交
  13. 09 1月, 2014 2 次提交
  14. 07 1月, 2014 1 次提交
  15. 04 1月, 2014 2 次提交
  16. 03 1月, 2014 1 次提交
    • A
      Add read_to_str and write_{str, line} · a2a67209
      Alex Crichton 提交于
      These methods are sorely needed on readers and writers, and I believe that the
      encoding story should be solved with composition. This commit adds back the
      missed functions when reading/writing strings onto generic Readers/Writers.
      a2a67209
  17. 02 1月, 2014 1 次提交
  18. 25 12月, 2013 3 次提交
    • A
      rustuv: Get all tests passing again after refactor · afd4e2ad
      Alex Crichton 提交于
      All tests except for the homing tests are now working again with the
      librustuv/libgreen refactoring. The homing-related tests are currently commented
      out and now placed in the rustuv::homing module.
      
      I plan on refactoring scheduler pool spawning in order to enable more homing
      tests in a future commit.
      afd4e2ad
    • A
      std: Get stdtest all passing again · 018d6050
      Alex Crichton 提交于
      This commit brings the library up-to-date in order to get all tests passing
      again
      018d6050
    • A
      native: Introduce libnative · 6aadc9d1
      Alex Crichton 提交于
      This commit introduces a new crate called "native" which will be the crate that
      implements the 1:1 runtime of rust. This currently entails having an
      implementation of std::rt::Runtime inside of libnative as well as moving all of
      the native I/O implementations to libnative.
      
      The current snag is that the start lang item must currently be defined in
      libnative in order to start running, but this will change in the future.
      
      Cool fact about this crate, there are no extra features that are enabled.
      
      Note that this commit does not include any makefile support necessary for
      building libnative, that's all coming in a later commit.
      6aadc9d1
  19. 24 12月, 2013 2 次提交
  20. 21 12月, 2013 1 次提交
  21. 20 12月, 2013 1 次提交
  22. 17 12月, 2013 1 次提交
  23. 15 12月, 2013 2 次提交
  24. 12 12月, 2013 2 次提交
    • S
      Add std::io::util · 7fe5e308
      Steven Fackler 提交于
      This adds a bunch of useful Reader and Writer implementations. I'm not a
      huge fan of the name `util` but I can't think of a better name and I
      don't want to make `std::io` any longer than it already is.
      7fe5e308
    • E
      Make 'self lifetime illegal. · 5731ca30
      Erik Price 提交于
      Also remove all instances of 'self within the codebase.
      
      This fixes #10889.
      5731ca30
  25. 11 12月, 2013 2 次提交
  26. 05 12月, 2013 1 次提交
  27. 04 12月, 2013 1 次提交