rust/src/libcore/iter
Alex Crichton a7220d9046 std: Clean out deprecated APIs
This primarily removes a lot of `sync::Static*` APIs and rejiggers the
associated implementations. While doing this it was discovered that the
`is_poisoned` method can actually result in a data race for the Mutex/RwLock
primitives, so the inner `Cell<bool>` was changed to an `AtomicBool` to prevent
the associated data race. Otherwise the usage/gurantees should be the same
they were before.
2016-07-12 12:51:13 -07:00
..
iterator.rs std: Stabilize APIs for the 1.11.0 release 2016-07-03 10:49:01 -07:00
mod.rs std: Clean out deprecated APIs 2016-07-12 12:51:13 -07:00
range.rs std: Stabilize APIs for the 1.11.0 release 2016-07-03 10:49:01 -07:00
sources.rs Split core::iter module implementation into parts 2016-04-18 20:08:27 +02:00
traits.rs Improve DoubleEndedIterator examples 2016-07-06 01:34:58 +02:00