Stabilization of impls and fallout from stabilization

This commit is contained in:
Aaron Turon 2015-01-04 16:16:55 -08:00
parent cb765ce7e1
commit c6f4a03d12
29 changed files with 128 additions and 49 deletions

View File

@ -246,7 +246,7 @@ impl<T> BorrowFrom<Arc<T>> for T {
}
}
#[experimental = "Deref is experimental."]
#[stable]
impl<T> Deref for Arc<T> {
type Target = T;
@ -290,7 +290,7 @@ impl<T: Send + Sync + Clone> Arc<T> {
}
#[unsafe_destructor]
#[experimental = "waiting on stability of Drop"]
#[stable]
impl<T: Sync + Send> Drop for Arc<T> {
/// Drops the `Arc<T>`.
///
@ -418,7 +418,7 @@ impl<T: Sync + Send> Clone for Weak<T> {
}
#[unsafe_destructor]
#[experimental = "Weak pointers may not belong in this module."]
#[stable]
impl<T: Sync + Send> Drop for Weak<T> {
/// Drops the `Weak<T>`.
///

View File

@ -155,12 +155,14 @@ impl fmt::Show for Box<Any> {
}
}
#[stable]
impl<Sized? T> Deref for Box<T> {
type Target = T;
fn deref(&self) -> &T { &**self }
}
#[stable]
impl<Sized? T> DerefMut for Box<T> {
fn deref_mut(&mut self) -> &mut T { &mut **self }
}

View File

@ -354,7 +354,7 @@ impl<T> BorrowFrom<Rc<T>> for T {
}
}
#[experimental = "Deref is experimental."]
#[stable]
impl<T> Deref for Rc<T> {
type Target = T;
@ -365,7 +365,7 @@ impl<T> Deref for Rc<T> {
}
#[unsafe_destructor]
#[experimental = "Drop is experimental."]
#[stable]
impl<T> Drop for Rc<T> {
/// Drops the `Rc<T>`.
///
@ -656,7 +656,7 @@ impl<T> Weak<T> {
}
#[unsafe_destructor]
#[experimental = "Weak pointers may not belong in this module."]
#[stable]
impl<T> Drop for Weak<T> {
/// Drops the `Weak<T>`.
///

View File

@ -562,11 +562,13 @@ impl<T: Ord> BinaryHeap<T> {
}
/// `BinaryHeap` iterator.
#[stable]
pub struct Iter <'a, T: 'a> {
iter: slice::Iter<'a, T>,
}
// FIXME(#19839) Remove in favor of `#[derive(Clone)]`
#[stable]
impl<'a, T> Clone for Iter<'a, T> {
fn clone(&self) -> Iter<'a, T> {
Iter { iter: self.iter.clone() }
@ -594,6 +596,7 @@ impl<'a, T> DoubleEndedIterator for Iter<'a, T> {
impl<'a, T> ExactSizeIterator for Iter<'a, T> {}
/// An iterator that moves out of a `BinaryHeap`.
#[stable]
pub struct IntoIter<T> {
iter: vec::IntoIter<T>,
}
@ -619,6 +622,7 @@ impl<T> DoubleEndedIterator for IntoIter<T> {
impl<T> ExactSizeIterator for IntoIter<T> {}
/// An iterator that drains a `BinaryHeap`.
#[unstable = "recent addition"]
pub struct Drain<'a, T: 'a> {
iter: vec::Drain<'a, T>,
}

View File

@ -113,8 +113,7 @@ mod prelude {
pub use core::iter::range;
pub use core::iter::{FromIterator, Extend, IteratorExt};
pub use core::iter::{Iterator, DoubleEndedIterator, RandomAccessIterator};
pub use core::iter::{IteratorCloneExt, CloneIteratorExt};
pub use core::iter::{IteratorOrdExt, MutableDoubleEndedIterator, ExactSizeIterator};
pub use core::iter::{ExactSizeIterator};
pub use core::kinds::{Copy, Send, Sized, Sync};
pub use core::mem::drop;
pub use core::ops::{Drop, Fn, FnMut, FnOnce};

View File

@ -1092,6 +1092,7 @@ struct SizeDirection {
dir: Direction,
}
#[stable]
impl Iterator for ElementSwaps {
type Item = (uint, uint);

View File

@ -165,6 +165,7 @@ enum DecompositionType {
/// External iterator for a string's decomposition's characters.
/// Use with the `std::iter` module.
#[derive(Clone)]
#[unstable]
pub struct Decompositions<'a> {
kind: DecompositionType,
iter: Chars<'a>,
@ -172,6 +173,7 @@ pub struct Decompositions<'a> {
sorted: bool
}
#[stable]
impl<'a> Iterator for Decompositions<'a> {
type Item = char;
@ -253,6 +255,7 @@ enum RecompositionState {
/// External iterator for a string's recomposition's characters.
/// Use with the `std::iter` module.
#[derive(Clone)]
#[unstable]
pub struct Recompositions<'a> {
iter: Decompositions<'a>,
state: RecompositionState,
@ -261,6 +264,7 @@ pub struct Recompositions<'a> {
last_ccc: Option<u8>
}
#[stable]
impl<'a> Iterator for Recompositions<'a> {
type Item = char;
@ -348,10 +352,12 @@ impl<'a> Iterator for Recompositions<'a> {
/// External iterator for a string's UTF16 codeunits.
/// Use with the `std::iter` module.
#[derive(Clone)]
#[unstable]
pub struct Utf16Units<'a> {
encoder: Utf16Encoder<Chars<'a>>
}
#[stable]
impl<'a> Iterator for Utf16Units<'a> {
type Item = u16;

View File

@ -711,7 +711,7 @@ impl fmt::Show for FromUtf16Error {
}
}
#[experimental = "waiting on FromIterator stabilization"]
#[stable]
impl FromIterator<char> for String {
fn from_iter<I:Iterator<Item=char>>(iterator: I) -> String {
let mut buf = String::new();
@ -720,7 +720,7 @@ impl FromIterator<char> for String {
}
}
#[experimental = "waiting on FromIterator stabilization"]
#[stable]
impl<'a> FromIterator<&'a str> for String {
fn from_iter<I:Iterator<Item=&'a str>>(iterator: I) -> String {
let mut buf = String::new();
@ -832,7 +832,7 @@ impl<H: hash::Writer> hash::Hash<H> for String {
}
}
#[experimental = "waiting on Add stabilization"]
#[unstable = "recent addition, needs more experience"]
impl<'a> Add<&'a str> for String {
type Output = String;
@ -864,7 +864,7 @@ impl ops::Slice<uint, str> for String {
}
}
#[experimental = "waiting on Deref stabilization"]
#[stable]
impl ops::Deref for String {
type Target = str;

View File

@ -1272,19 +1272,19 @@ impl<T> ops::SliceMut<uint, [T]> for Vec<T> {
}
}
#[experimental = "waiting on Deref stability"]
#[stable]
impl<T> ops::Deref for Vec<T> {
type Target = [T];
fn deref<'a>(&'a self) -> &'a [T] { self.as_slice() }
}
#[experimental = "waiting on DerefMut stability"]
#[stable]
impl<T> ops::DerefMut for Vec<T> {
fn deref_mut<'a>(&'a mut self) -> &'a mut [T] { self.as_mut_slice() }
}
#[experimental = "waiting on FromIterator stability"]
#[stable]
impl<T> FromIterator<T> for Vec<T> {
#[inline]
fn from_iter<I:Iterator<Item=T>>(mut iterator: I) -> Vec<T> {
@ -1414,6 +1414,7 @@ impl<T> AsSlice<T> for Vec<T> {
}
}
#[unstable = "recent addition, needs more experience"]
impl<'a, T: Clone> Add<&'a [T]> for Vec<T> {
type Output = Vec<T>;
@ -1425,6 +1426,7 @@ impl<'a, T: Clone> Add<&'a [T]> for Vec<T> {
}
#[unsafe_destructor]
#[stable]
impl<T> Drop for Vec<T> {
fn drop(&mut self) {
// This is (and should always remain) a no-op if the fields are
@ -1470,6 +1472,7 @@ impl<'a> fmt::Writer for Vec<u8> {
/// A clone-on-write vector
pub type CowVec<'a, T> = Cow<'a, Vec<T>, [T]>;
#[unstable]
impl<'a, T> FromIterator<T> for CowVec<'a, T> where T: Clone {
fn from_iter<I: Iterator<Item=T>>(it: I) -> CowVec<'a, T> {
Cow::Owned(FromIterator::from_iter(it))
@ -1515,6 +1518,7 @@ impl<T> IntoIter<T> {
}
}
#[stable]
impl<T> Iterator for IntoIter<T> {
type Item = T;
@ -1551,6 +1555,7 @@ impl<T> Iterator for IntoIter<T> {
}
}
#[stable]
impl<T> DoubleEndedIterator for IntoIter<T> {
#[inline]
fn next_back<'a>(&'a mut self) -> Option<T> {
@ -1574,9 +1579,11 @@ impl<T> DoubleEndedIterator for IntoIter<T> {
}
}
#[stable]
impl<T> ExactSizeIterator for IntoIter<T> {}
#[unsafe_destructor]
#[stable]
impl<T> Drop for IntoIter<T> {
fn drop(&mut self) {
// destroy the remaining elements
@ -1598,6 +1605,7 @@ pub struct Drain<'a, T> {
marker: ContravariantLifetime<'a>,
}
#[stable]
impl<'a, T> Iterator for Drain<'a, T> {
type Item = T;
@ -1634,6 +1642,7 @@ impl<'a, T> Iterator for Drain<'a, T> {
}
}
#[stable]
impl<'a, T> DoubleEndedIterator for Drain<'a, T> {
#[inline]
fn next_back(&mut self) -> Option<T> {
@ -1657,9 +1666,11 @@ impl<'a, T> DoubleEndedIterator for Drain<'a, T> {
}
}
#[stable]
impl<'a, T> ExactSizeIterator for Drain<'a, T> {}
#[unsafe_destructor]
#[stable]
impl<'a, T> Drop for Drain<'a, T> {
fn drop(&mut self) {
// self.ptr == self.end == null if drop has already been called,
@ -1692,7 +1703,7 @@ impl<'a, T> Deref for DerefVec<'a, T> {
// Prevent the inner `Vec<T>` from attempting to deallocate memory.
#[unsafe_destructor]
#[experimental]
#[stable]
impl<'a, T> Drop for DerefVec<'a, T> {
fn drop(&mut self) {
self.x.len = 0;

View File

@ -191,6 +191,7 @@ impl<'a, T, Sized? B> Cow<'a, T, B> where B: ToOwned<T> {
}
}
#[stable]
impl<'a, T, Sized? B> Deref for Cow<'a, T, B> where B: ToOwned<T> {
type Target = B;

View File

@ -419,7 +419,7 @@ pub struct Ref<'b, T:'b> {
_borrow: BorrowRef<'b>,
}
#[unstable = "waiting for `Deref` to become stable"]
#[stable]
impl<'b, T> Deref for Ref<'b, T> {
type Target = T;
@ -477,7 +477,7 @@ pub struct RefMut<'b, T:'b> {
_borrow: BorrowRefMut<'b>,
}
#[unstable = "waiting for `Deref` to become stable"]
#[stable]
impl<'b, T> Deref for RefMut<'b, T> {
type Target = T;
@ -487,7 +487,7 @@ impl<'b, T> Deref for RefMut<'b, T> {
}
}
#[unstable = "waiting for `DerefMut` to become stable"]
#[stable]
impl<'b, T> DerefMut for RefMut<'b, T> {
#[inline]
fn deref_mut<'a>(&'a mut self) -> &'a mut T {

View File

@ -314,6 +314,7 @@ pub struct EscapeUnicode {
}
#[derive(Clone)]
#[unstable]
enum EscapeUnicodeState {
Backslash,
Type,
@ -375,6 +376,7 @@ pub struct EscapeDefault {
}
#[derive(Clone)]
#[unstable]
enum EscapeDefaultState {
Backslash(char),
Char(char),

View File

@ -2401,7 +2401,7 @@ impl<A, St, F> Unfold<A, St, F> where F: FnMut(&mut St) -> Option<A> {
}
}
#[experimental]
#[stable]
impl<A, St, F> Iterator for Unfold<A, St, F> where F: FnMut(&mut St) -> Option<A> {
type Item = A;

View File

@ -984,6 +984,7 @@ pub struct Range<Idx> {
// FIXME(#19391) needs a snapshot
//impl<Idx: Clone + Step<T=uint>> Iterator<Idx> for Range<Idx> {
#[unstable = "API still in development"]
impl<Idx: Clone + Step> Iterator for Range<Idx> {
type Item = Idx;
@ -1008,6 +1009,7 @@ impl<Idx: Clone + Step> Iterator for Range<Idx> {
}
}
#[unstable = "API still in development"]
impl<Idx: Clone + Step> DoubleEndedIterator for Range<Idx> {
#[inline]
fn next_back(&mut self) -> Option<Idx> {
@ -1020,6 +1022,7 @@ impl<Idx: Clone + Step> DoubleEndedIterator for Range<Idx> {
}
}
#[unstable = "API still in development"]
impl<Idx: Clone + Step> ExactSizeIterator for Range<Idx> {}
/// A range which is only bounded below.
@ -1031,6 +1034,7 @@ pub struct RangeFrom<Idx> {
pub start: Idx,
}
#[unstable = "API still in development"]
impl<Idx: Clone + Step> Iterator for RangeFrom<Idx> {
type Item = Idx;

View File

@ -807,6 +807,7 @@ impl<A> ExactSizeIterator for Item<A> {}
#[stable]
pub struct Iter<'a, A: 'a> { inner: Item<&'a A> }
#[stable]
impl<'a, A> Iterator for Iter<'a, A> {
type Item = &'a A;
@ -816,11 +817,13 @@ impl<'a, A> Iterator for Iter<'a, A> {
fn size_hint(&self) -> (uint, Option<uint>) { self.inner.size_hint() }
}
#[stable]
impl<'a, A> DoubleEndedIterator for Iter<'a, A> {
#[inline]
fn next_back(&mut self) -> Option<&'a A> { self.inner.next_back() }
}
#[stable]
impl<'a, A> ExactSizeIterator for Iter<'a, A> {}
#[stable]
@ -834,6 +837,7 @@ impl<'a, A> Clone for Iter<'a, A> {
#[stable]
pub struct IterMut<'a, A: 'a> { inner: Item<&'a mut A> }
#[stable]
impl<'a, A> Iterator for IterMut<'a, A> {
type Item = &'a mut A;
@ -843,17 +847,20 @@ impl<'a, A> Iterator for IterMut<'a, A> {
fn size_hint(&self) -> (uint, Option<uint>) { self.inner.size_hint() }
}
#[stable]
impl<'a, A> DoubleEndedIterator for IterMut<'a, A> {
#[inline]
fn next_back(&mut self) -> Option<&'a mut A> { self.inner.next_back() }
}
#[stable]
impl<'a, A> ExactSizeIterator for IterMut<'a, A> {}
/// An iterator over the item contained inside an Option.
#[stable]
pub struct IntoIter<A> { inner: Item<A> }
#[stable]
impl<A> Iterator for IntoIter<A> {
type Item = A;
@ -863,11 +870,13 @@ impl<A> Iterator for IntoIter<A> {
fn size_hint(&self) -> (uint, Option<uint>) { self.inner.size_hint() }
}
#[stable]
impl<A> DoubleEndedIterator for IntoIter<A> {
#[inline]
fn next_back(&mut self) -> Option<A> { self.inner.next_back() }
}
#[stable]
impl<A> ExactSizeIterator for IntoIter<A> {}
/////////////////////////////////////////////////////////////////////////////

View File

@ -43,8 +43,7 @@ pub use clone::Clone;
pub use cmp::{PartialEq, PartialOrd, Eq, Ord};
pub use iter::{Extend, IteratorExt};
pub use iter::{Iterator, DoubleEndedIterator};
pub use iter::{IteratorCloneExt, CloneIteratorExt};
pub use iter::{IteratorOrdExt, ExactSizeIterator};
pub use iter::{ExactSizeIterator};
pub use option::Option::{self, Some, None};
pub use ptr::{PtrExt, MutPtrExt};
pub use result::Result::{self, Ok, Err};

View File

@ -807,6 +807,7 @@ impl<T, E> AsSlice<T> for Result<T, E> {
#[stable]
pub struct Iter<'a, T: 'a> { inner: Option<&'a T> }
#[stable]
impl<'a, T> Iterator for Iter<'a, T> {
type Item = &'a T;
@ -819,11 +820,13 @@ impl<'a, T> Iterator for Iter<'a, T> {
}
}
#[stable]
impl<'a, T> DoubleEndedIterator for Iter<'a, T> {
#[inline]
fn next_back(&mut self) -> Option<&'a T> { self.inner.take() }
}
#[stable]
impl<'a, T> ExactSizeIterator for Iter<'a, T> {}
impl<'a, T> Clone for Iter<'a, T> {
@ -834,6 +837,7 @@ impl<'a, T> Clone for Iter<'a, T> {
#[stable]
pub struct IterMut<'a, T: 'a> { inner: Option<&'a mut T> }
#[stable]
impl<'a, T> Iterator for IterMut<'a, T> {
type Item = &'a mut T;
@ -846,17 +850,20 @@ impl<'a, T> Iterator for IterMut<'a, T> {
}
}
#[stable]
impl<'a, T> DoubleEndedIterator for IterMut<'a, T> {
#[inline]
fn next_back(&mut self) -> Option<&'a mut T> { self.inner.take() }
}
#[stable]
impl<'a, T> ExactSizeIterator for IterMut<'a, T> {}
/// An iterator over the value in a `Ok` variant of a `Result`.
#[stable]
pub struct IntoIter<T> { inner: Option<T> }
#[stable]
impl<T> Iterator for IntoIter<T> {
type Item = T;
@ -869,11 +876,13 @@ impl<T> Iterator for IntoIter<T> {
}
}
#[stable]
impl<T> DoubleEndedIterator for IntoIter<T> {
#[inline]
fn next_back(&mut self) -> Option<T> { self.inner.take() }
}
#[stable]
impl<T> ExactSizeIterator for IntoIter<T> {}
/////////////////////////////////////////////////////////////////////////////

View File

@ -672,7 +672,7 @@ impl<'a, T> Default for &'a [T] {
// The shared definition of the `Iter` and `IterMut` iterators
macro_rules! iterator {
(struct $name:ident -> $ptr:ty, $elem:ty) => {
#[experimental = "needs review"]
#[stable]
impl<'a, T> Iterator for $name<'a, T> {
type Item = $elem;
@ -710,7 +710,7 @@ macro_rules! iterator {
}
}
#[experimental = "needs review"]
#[stable]
impl<'a, T> DoubleEndedIterator for $name<'a, T> {
#[inline]
fn next_back(&mut self) -> Option<$elem> {
@ -793,7 +793,7 @@ impl<'a,T> Copy for Iter<'a,T> {}
iterator!{struct Iter -> *const T, &'a T}
#[experimental = "needs review"]
#[stable]
impl<'a, T> ExactSizeIterator for Iter<'a, T> {}
#[stable]
@ -801,7 +801,7 @@ impl<'a, T> Clone for Iter<'a, T> {
fn clone(&self) -> Iter<'a, T> { *self }
}
#[experimental = "needs review"]
#[experimental = "trait is experimental"]
impl<'a, T> RandomAccessIterator for Iter<'a, T> {
#[inline]
fn indexable(&self) -> uint {
@ -887,7 +887,7 @@ impl<'a, T> IterMut<'a, T> {
iterator!{struct IterMut -> *mut T, &'a mut T}
#[experimental = "needs review"]
#[stable]
impl<'a, T> ExactSizeIterator for IterMut<'a, T> {}
/// An internal abstraction over the splitting iterators, so that
@ -919,7 +919,7 @@ impl<'a, T, P> Clone for Split<'a, T, P> where P: Clone + FnMut(&T) -> bool {
}
}
#[experimental = "needs review"]
#[stable]
impl<'a, T, P> Iterator for Split<'a, T, P> where P: FnMut(&T) -> bool {
type Item = &'a [T];
@ -947,7 +947,7 @@ impl<'a, T, P> Iterator for Split<'a, T, P> where P: FnMut(&T) -> bool {
}
}
#[experimental = "needs review"]
#[stable]
impl<'a, T, P> DoubleEndedIterator for Split<'a, T, P> where P: FnMut(&T) -> bool {
#[inline]
fn next_back(&mut self) -> Option<&'a [T]> {
@ -992,7 +992,7 @@ impl<'a, T, P> SplitIter for SplitMut<'a, T, P> where P: FnMut(&T) -> bool {
}
}
#[experimental = "needs review"]
#[stable]
impl<'a, T, P> Iterator for SplitMut<'a, T, P> where P: FnMut(&T) -> bool {
type Item = &'a mut [T];
@ -1027,7 +1027,7 @@ impl<'a, T, P> Iterator for SplitMut<'a, T, P> where P: FnMut(&T) -> bool {
}
}
#[experimental = "needs review"]
#[stable]
impl<'a, T, P> DoubleEndedIterator for SplitMut<'a, T, P> where
P: FnMut(&T) -> bool,
{
@ -1060,7 +1060,6 @@ struct GenericSplitN<I> {
invert: bool
}
#[experimental = "needs review"]
impl<T, I: SplitIter + Iterator<Item=T>> Iterator for GenericSplitN<I> {
type Item = T;
@ -1113,6 +1112,7 @@ pub struct RSplitNMut<'a, T: 'a, P> where P: FnMut(&T) -> bool {
macro_rules! forward_iterator {
($name:ident: $elem:ident, $iter_of:ty) => {
#[stable]
impl<'a, $elem, P> Iterator for $name<'a, $elem, P> where
P: FnMut(&T) -> bool
{
@ -1144,6 +1144,7 @@ pub struct Windows<'a, T:'a> {
size: uint
}
#[stable]
impl<'a, T> Iterator for Windows<'a, T> {
type Item = &'a [T];
@ -1181,7 +1182,7 @@ pub struct Chunks<'a, T:'a> {
size: uint
}
#[experimental = "needs review"]
#[stable]
impl<'a, T> Iterator for Chunks<'a, T> {
type Item = &'a [T];
@ -1210,7 +1211,7 @@ impl<'a, T> Iterator for Chunks<'a, T> {
}
}
#[experimental = "needs review"]
#[stable]
impl<'a, T> DoubleEndedIterator for Chunks<'a, T> {
#[inline]
fn next_back(&mut self) -> Option<&'a [T]> {
@ -1226,7 +1227,7 @@ impl<'a, T> DoubleEndedIterator for Chunks<'a, T> {
}
}
#[experimental = "needs review"]
#[experimental = "trait is experimental"]
impl<'a, T> RandomAccessIterator for Chunks<'a, T> {
#[inline]
fn indexable(&self) -> uint {
@ -1256,7 +1257,7 @@ pub struct ChunksMut<'a, T:'a> {
chunk_size: uint
}
#[experimental = "needs review"]
#[stable]
impl<'a, T> Iterator for ChunksMut<'a, T> {
type Item = &'a mut [T];
@ -1286,7 +1287,7 @@ impl<'a, T> Iterator for ChunksMut<'a, T> {
}
}
#[experimental = "needs review"]
#[stable]
impl<'a, T> DoubleEndedIterator for ChunksMut<'a, T> {
#[inline]
fn next_back(&mut self) -> Option<&'a mut [T]> {

View File

@ -37,11 +37,8 @@ use uint;
macro_rules! delegate_iter {
(exact $te:ty in $ti:ty) => {
delegate_iter!{$te in $ti}
#[stable]
impl<'a> ExactSizeIterator for $ti {
#[inline]
fn rposition<P>(&mut self, predicate: P) -> Option<uint> where P: FnMut($te) -> bool{
self.0.rposition(predicate)
}
#[inline]
fn len(&self) -> uint {
self.0.len()
@ -49,6 +46,7 @@ macro_rules! delegate_iter {
}
};
($te:ty in $ti:ty) => {
#[stable]
impl<'a> Iterator for $ti {
type Item = $te;
@ -61,6 +59,7 @@ macro_rules! delegate_iter {
self.0.size_hint()
}
}
#[stable]
impl<'a> DoubleEndedIterator for $ti {
#[inline]
fn next_back(&mut self) -> Option<$te> {
@ -69,6 +68,7 @@ macro_rules! delegate_iter {
}
};
(pattern $te:ty in $ti:ty) => {
#[stable]
impl<'a, P: CharEq> Iterator for $ti {
type Item = $te;
@ -81,6 +81,7 @@ macro_rules! delegate_iter {
self.0.size_hint()
}
}
#[stable]
impl<'a, P: CharEq> DoubleEndedIterator for $ti {
#[inline]
fn next_back(&mut self) -> Option<$te> {
@ -89,6 +90,7 @@ macro_rules! delegate_iter {
}
};
(pattern forward $te:ty in $ti:ty) => {
#[stable]
impl<'a, P: CharEq> Iterator for $ti {
type Item = $te;
@ -275,6 +277,7 @@ fn unwrap_or_0(opt: Option<&u8>) -> u8 {
}
}
#[stable]
impl<'a> Iterator for Chars<'a> {
type Item = char;
@ -320,6 +323,7 @@ impl<'a> Iterator for Chars<'a> {
}
}
#[stable]
impl<'a> DoubleEndedIterator for Chars<'a> {
#[inline]
fn next_back(&mut self) -> Option<char> {
@ -356,11 +360,13 @@ impl<'a> DoubleEndedIterator for Chars<'a> {
/// External iterator for a string's characters and their byte offsets.
/// Use with the `std::iter` module.
#[derive(Clone)]
#[stable]
pub struct CharIndices<'a> {
front_offset: uint,
iter: Chars<'a>,
}
#[stable]
impl<'a> Iterator for CharIndices<'a> {
type Item = (uint, char);
@ -384,6 +390,7 @@ impl<'a> Iterator for CharIndices<'a> {
}
}
#[stable]
impl<'a> DoubleEndedIterator for CharIndices<'a> {
#[inline]
fn next_back(&mut self) -> Option<(uint, char)> {
@ -465,6 +472,7 @@ impl<'a, Sep> CharSplits<'a, Sep> {
}
}
#[stable]
impl<'a, Sep: CharEq> Iterator for CharSplits<'a, Sep> {
type Item = &'a str;
@ -499,6 +507,7 @@ impl<'a, Sep: CharEq> Iterator for CharSplits<'a, Sep> {
}
}
#[stable]
impl<'a, Sep: CharEq> DoubleEndedIterator for CharSplits<'a, Sep> {
#[inline]
fn next_back(&mut self) -> Option<&'a str> {
@ -540,6 +549,7 @@ impl<'a, Sep: CharEq> DoubleEndedIterator for CharSplits<'a, Sep> {
}
}
#[stable]
impl<'a, Sep: CharEq> Iterator for CharSplitsN<'a, Sep> {
type Item = &'a str;
@ -865,6 +875,7 @@ pub struct SplitStr<'a> {
finished: bool
}
#[stable]
impl<'a> Iterator for MatchIndices<'a> {
type Item = (uint, uint);
@ -881,6 +892,7 @@ impl<'a> Iterator for MatchIndices<'a> {
}
}
#[stable]
impl<'a> Iterator for SplitStr<'a> {
type Item = &'a str;
@ -1586,6 +1598,7 @@ impl<'a> Default for &'a str {
fn default() -> &'a str { "" }
}
#[stable]
impl<'a> Iterator for Lines<'a> {
type Item = &'a str;
@ -1593,11 +1606,13 @@ impl<'a> Iterator for Lines<'a> {
fn next(&mut self) -> Option<&'a str> { self.inner.next() }
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) { self.inner.size_hint() }
}
#[stable]}
impl<'a> DoubleEndedIterator for Lines<'a> {
#[inline]
fn next_back(&mut self) -> Option<&'a str> { self.inner.next_back() }
}
#[stable]}
impl<'a> Iterator for LinesAny<'a> {
type Item = &'a str;
@ -1605,7 +1620,8 @@ impl<'a> Iterator for LinesAny<'a> {
fn next(&mut self) -> Option<&'a str> { self.inner.next() }
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) { self.inner.size_hint() }
}
#[stable]}
impl<'a> DoubleEndedIterator for LinesAny<'a> {
#[inline]
fn next_back(&mut self) -> Option<&'a str> { self.inner.next_back() }

View File

@ -18,7 +18,7 @@ use default::Default;
use fmt::Show;
use fmt;
use hash::{Hash, Hasher, RandomSipHasher};
use iter::{Iterator, IteratorExt, IteratorCloneExt, FromIterator, Map, Chain, Extend};
use iter::{Iterator, IteratorExt, FromIterator, Map, Chain, Extend};
use ops::{BitOr, BitAnd, BitXor, Sub};
use option::Option::{Some, None, self};
use result::Result::{Ok, Err};

View File

@ -14,7 +14,7 @@
use cmp;
use io::{Reader, Writer, Stream, Buffer, DEFAULT_BUF_SIZE, IoResult};
use iter::ExactSizeIterator;
use iter::{IteratorExt, ExactSizeIterator};
use ops::Drop;
use option::Option;
use option::Option::{Some, None};

View File

@ -25,11 +25,9 @@
#[stable] #[doc(no_inline)] pub use char::CharExt;
#[stable] #[doc(no_inline)] pub use clone::Clone;
#[stable] #[doc(no_inline)] pub use cmp::{PartialEq, PartialOrd, Eq, Ord};
#[stable] #[doc(no_inline)] pub use iter::CloneIteratorExt;
#[stable] #[doc(no_inline)] pub use iter::DoubleEndedIterator;
#[stable] #[doc(no_inline)] pub use iter::ExactSizeIterator;
#[stable] #[doc(no_inline)] pub use iter::{Iterator, IteratorExt, Extend};
#[stable] #[doc(no_inline)] pub use iter::{IteratorCloneExt, IteratorOrdExt};
#[stable] #[doc(no_inline)] pub use option::Option::{self, Some, None};
#[stable] #[doc(no_inline)] pub use ptr::{PtrExt, MutPtrExt};
#[stable] #[doc(no_inline)] pub use result::Result::{self, Ok, Err};

View File

@ -188,6 +188,7 @@ impl Condvar {
pub fn notify_all(&self) { unsafe { self.inner.inner.notify_all() } }
}
#[stable]
impl Drop for Condvar {
fn drop(&mut self) {
unsafe { self.inner.inner.destroy() }

View File

@ -657,6 +657,7 @@ impl<T: Send> Clone for Sender<T> {
}
#[unsafe_destructor]
#[stable]
impl<T: Send> Drop for Sender<T> {
fn drop(&mut self) {
match *unsafe { self.inner_mut() } {
@ -720,6 +721,7 @@ impl<T: Send> Clone for SyncSender<T> {
}
#[unsafe_destructor]
#[stable]
impl<T: Send> Drop for SyncSender<T> {
fn drop(&mut self) {
unsafe { (*self.inner.get()).drop_chan(); }
@ -935,7 +937,7 @@ impl<T: Send> select::Packet for Receiver<T> {
}
}
#[unstable]
#[stable]
impl<'a, T: Send> Iterator for Iter<'a, T> {
type Item = T;
@ -943,6 +945,7 @@ impl<'a, T: Send> Iterator for Iter<'a, T> {
}
#[unsafe_destructor]
#[stable]
impl<T: Send> Drop for Receiver<T> {
fn drop(&mut self) {
match *unsafe { self.inner_mut() } {

View File

@ -138,6 +138,7 @@ impl<T: Send> Queue<T> {
}
#[unsafe_destructor]
#[stable]
impl<T: Send> Drop for Queue<T> {
fn drop(&mut self) {
unsafe {

View File

@ -228,6 +228,7 @@ impl<T: Send> Mutex<T> {
}
#[unsafe_destructor]
#[stable]
impl<T: Send> Drop for Mutex<T> {
fn drop(&mut self) {
// This is actually safe b/c we know that there is no further usage of
@ -291,6 +292,7 @@ impl<'mutex, T> MutexGuard<'mutex, T> {
}
}
#[stable]
impl<'mutex, T> Deref for MutexGuard<'mutex, T> {
type Target = T;
@ -298,6 +300,7 @@ impl<'mutex, T> Deref for MutexGuard<'mutex, T> {
unsafe { &*self.__data.get() }
}
}
#[stable]
impl<'mutex, T> DerefMut for MutexGuard<'mutex, T> {
fn deref_mut<'a>(&'a mut self) -> &'a mut T {
unsafe { &mut *self.__data.get() }
@ -305,6 +308,7 @@ impl<'mutex, T> DerefMut for MutexGuard<'mutex, T> {
}
#[unsafe_destructor]
#[stable]
impl<'a, T> Drop for MutexGuard<'a, T> {
#[inline]
fn drop(&mut self) {

View File

@ -228,6 +228,7 @@ impl<T: Send + Sync> RWLock<T> {
}
#[unsafe_destructor]
#[stable]
impl<T> Drop for RWLock<T> {
fn drop(&mut self) {
unsafe { self.inner.lock.destroy() }
@ -327,16 +328,19 @@ impl<'rwlock, T> RWLockWriteGuard<'rwlock, T> {
}
}
#[stable]
impl<'rwlock, T> Deref for RWLockReadGuard<'rwlock, T> {
type Target = T;
fn deref(&self) -> &T { unsafe { &*self.__data.get() } }
}
#[stable]
impl<'rwlock, T> Deref for RWLockWriteGuard<'rwlock, T> {
type Target = T;
fn deref(&self) -> &T { unsafe { &*self.__data.get() } }
}
#[stable]
impl<'rwlock, T> DerefMut for RWLockWriteGuard<'rwlock, T> {
fn deref_mut(&mut self) -> &mut T {
unsafe { &mut *self.__data.get() }
@ -344,6 +348,7 @@ impl<'rwlock, T> DerefMut for RWLockWriteGuard<'rwlock, T> {
}
#[unsafe_destructor]
#[stable]
impl<'a, T> Drop for RWLockReadGuard<'a, T> {
fn drop(&mut self) {
unsafe { self.__lock.lock.read_unlock(); }
@ -351,6 +356,7 @@ impl<'a, T> Drop for RWLockReadGuard<'a, T> {
}
#[unsafe_destructor]
#[stable]
impl<'a, T> Drop for RWLockWriteGuard<'a, T> {
fn drop(&mut self) {
self.__lock.poison.done(&self.__poison);

View File

@ -99,6 +99,7 @@ impl Semaphore {
}
#[unsafe_destructor]
#[stable]
impl<'a> Drop for SemaphoreGuard<'a> {
fn drop(&mut self) {
self.sem.release();

View File

@ -423,6 +423,7 @@ impl<T: Send> JoinGuard<T> {
}
#[unsafe_destructor]
#[stable]
impl<T: Send> Drop for JoinGuard<T> {
fn drop(&mut self) {
if !self.joined {