|
51 | 51 | //! See the documentation for each trait for a minimum implementation that prints
|
52 | 52 | //! something to the screen.
|
53 | 53 |
|
| 54 | +use clone::Clone; |
| 55 | +use iter::{Step, Iterator,DoubleEndedIterator,ExactSizeIterator}; |
54 | 56 | use kinds::Sized;
|
| 57 | +use option::Option::{mod, Some, None}; |
55 | 58 |
|
56 | 59 | /// The `Drop` trait is used to run some code when a value goes out of scope. This
|
57 | 60 | /// is sometimes called a 'destructor'.
|
@@ -833,6 +836,79 @@ pub trait SliceMut<Sized? Idx, Sized? Result> for Sized? {
|
833 | 836 | fn slice_or_fail_mut<'a>(&'a mut self, from: &Idx, to: &Idx) -> &'a mut Result;
|
834 | 837 | }
|
835 | 838 |
|
| 839 | + |
| 840 | +/// An unbounded range. |
| 841 | +#[deriving(Copy)] |
| 842 | +#[lang="full_range"] |
| 843 | +pub struct FullRange; |
| 844 | + |
| 845 | +/// A (half-open) range which is bounded at both ends. |
| 846 | +#[deriving(Copy)] |
| 847 | +#[lang="range"] |
| 848 | +pub struct Range<Idx> { |
| 849 | + /// The lower bound of the range (inclusive). |
| 850 | + pub start: Idx, |
| 851 | + /// The upper bound of the range (exclusive). |
| 852 | + pub end: Idx, |
| 853 | +} |
| 854 | + |
| 855 | +// FIXME(#19391) needs a snapshot |
| 856 | +//impl<Idx: Clone + Step<T=uint>> Iterator<Idx> for Range<Idx> { |
| 857 | +impl<Idx: Clone + Step> Iterator<Idx> for Range<Idx> { |
| 858 | + #[inline] |
| 859 | + fn next(&mut self) -> Option<Idx> { |
| 860 | + if self.start < self.end { |
| 861 | + let result = self.start.clone(); |
| 862 | + self.start.step(); |
| 863 | + return Some(result); |
| 864 | + } |
| 865 | + |
| 866 | + return None; |
| 867 | + } |
| 868 | + |
| 869 | + #[inline] |
| 870 | + fn size_hint(&self) -> (uint, Option<uint>) { |
| 871 | + if let Some(hint) = Step::steps_between(&self.end, &self.start) { |
| 872 | + (hint, Some(hint)) |
| 873 | + } else { |
| 874 | + (0, None) |
| 875 | + } |
| 876 | + } |
| 877 | +} |
| 878 | + |
| 879 | +impl<Idx: Clone + Step> DoubleEndedIterator<Idx> for Range<Idx> { |
| 880 | + #[inline] |
| 881 | + fn next_back(&mut self) -> Option<Idx> { |
| 882 | + if self.start < self.end { |
| 883 | + self.end.step_back(); |
| 884 | + return Some(self.end.clone()); |
| 885 | + } |
| 886 | + |
| 887 | + return None; |
| 888 | + } |
| 889 | +} |
| 890 | + |
| 891 | +impl<Idx: Clone + Step> ExactSizeIterator<Idx> for Range<Idx> {} |
| 892 | + |
| 893 | +/// A range which is only bounded below. |
| 894 | +#[deriving(Copy)] |
| 895 | +#[lang="range_from"] |
| 896 | +pub struct RangeFrom<Idx> { |
| 897 | + /// The lower bound of the range (inclusive). |
| 898 | + pub start: Idx, |
| 899 | +} |
| 900 | + |
| 901 | +impl<Idx: Clone + Step> Iterator<Idx> for RangeFrom<Idx> { |
| 902 | + #[inline] |
| 903 | + fn next(&mut self) -> Option<Idx> { |
| 904 | + // Deliberately overflow so we loop forever. |
| 905 | + let result = self.start.clone(); |
| 906 | + self.start.step(); |
| 907 | + return Some(result); |
| 908 | + } |
| 909 | +} |
| 910 | + |
| 911 | + |
836 | 912 | /// The `Deref` trait is used to specify the functionality of dereferencing
|
837 | 913 | /// operations like `*v`.
|
838 | 914 | ///
|
|
0 commit comments