rust/src/libstd/collections
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
..
hashmap std: Convert statics to constants 2014-10-09 09:44:51 -07:00
lru_cache.rs Fallout from renaming 2014-09-16 14:37:48 -07:00
mod.rs library-level docs for collections 2014-10-06 23:19:14 -04:00