rust/src/libstd/io
Alex Crichton ab5935c88d std: Convert statics to constants
This commit repurposes most statics as constants in the standard library itself,
with the exception of TLS keys which precisely have their own memory location as
an implementation detail.

This commit also rewrites the bitflags syntax to use `const` instead of
`static`. All invocations will need to replace the word `static` with `const`
when declaring flags.

Due to the modification of the `bitflags!` syntax, this is a:

[breaking-change]
2014-10-09 09:44:51 -07:00
..
net Put slicing syntax behind a feature gate. 2014-10-07 15:49:53 +13:00
buffered.rs Use slice syntax instead of slice_to, etc. 2014-10-07 15:49:53 +13:00
comm_adapters.rs Use slice syntax instead of slice_to, etc. 2014-10-07 15:49:53 +13:00
extensions.rs Rename slice::Slice 2014-10-07 15:49:53 +13:00
fs.rs Use slice syntax instead of slice_to, etc. 2014-10-07 15:49:53 +13:00
mem.rs Rename slice::Slice 2014-10-07 15:49:53 +13:00
mod.rs std: Convert statics to constants 2014-10-09 09:44:51 -07:00
pipe.rs Remove iotest macro 2014-10-01 10:34:39 -07:00
process.rs std: Convert statics to constants 2014-10-09 09:44:51 -07:00
result.rs Use temp vars for implicit coercion to ^[T] 2014-08-26 12:37:45 +12:00
stdio.rs Remove iotest macro 2014-10-01 10:34:39 -07:00
tempfile.rs Rename the file permission statics in std::io to be uppercase 2014-10-06 16:43:34 +13:00
test.rs Remove iotest macro 2014-10-01 10:34:39 -07:00
timer.rs Remove use of final and override (now reserved) 2014-10-07 22:18:12 -04:00
util.rs Use slice syntax instead of slice_to, etc. 2014-10-07 15:49:53 +13:00