about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRobin Gloster <robin@loc-com.de>2015-01-04 03:40:50 +0100
committerRobin Gloster <robin@loc-com.de>2015-01-04 12:13:21 +0100
commit5cc17382d17ff2f9eb335c2e80e28089bb2d5810 (patch)
tree0f8e885ff4a9f6ea79188f79d7119fcdadb8624e /src
parent496dc4eae7de9d14cd49511a9acfbf5f11ae6c3f (diff)
downloadrust-5cc17382d17ff2f9eb335c2e80e28089bb2d5810.tar.gz
rust-5cc17382d17ff2f9eb335c2e80e28089bb2d5810.zip
fix range sugar
Diffstat (limited to 'src')
-rw-r--r--src/libcore/iter.rs12
-rw-r--r--src/libcore/ops.rs2
2 files changed, 7 insertions, 7 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs
index d7a675b3104..957c1f89f48 100644
--- a/src/libcore/iter.rs
+++ b/src/libcore/iter.rs
@@ -2620,10 +2620,10 @@ pub trait Step: Ord {
     /// Change self to the previous object.
     fn step_back(&mut self);
     /// The steps_between two step objects.
-    /// a should always be less than b, so the result should never be negative.
+    /// start should always be less than end, so the result should never be negative.
     /// Return None if it is not possible to calculate steps_between without
     /// overflow.
-    fn steps_between(a: &Self, b: &Self) -> Option<uint>;
+    fn steps_between(start: &Self, end: &Self) -> Option<uint>;
 }
 
 macro_rules! step_impl {
@@ -2635,9 +2635,9 @@ macro_rules! step_impl {
             #[inline]
             fn step_back(&mut self) { *self -= 1; }
             #[inline]
-            fn steps_between(a: &$t, b: &$t) -> Option<uint> {
-                debug_assert!(a < b);
-                Some((*a - *b) as uint)
+            fn steps_between(start: &$t, end: &$t) -> Option<uint> {
+                debug_assert!(end >= start);
+                Some((*end - *start) as uint)
             }
         }
     )*)
@@ -2652,7 +2652,7 @@ macro_rules! step_impl_no_between {
             #[inline]
             fn step_back(&mut self) { *self -= 1; }
             #[inline]
-            fn steps_between(_a: &$t, _b: &$t) -> Option<uint> {
+            fn steps_between(_start: &$t, _end: &$t) -> Option<uint> {
                 None
             }
         }
diff --git a/src/libcore/ops.rs b/src/libcore/ops.rs
index b51d4d91c2f..d9c08a98705 100644
--- a/src/libcore/ops.rs
+++ b/src/libcore/ops.rs
@@ -803,7 +803,7 @@ impl<Idx: Clone + Step> Iterator<Idx> for Range<Idx> {
 
     #[inline]
     fn size_hint(&self) -> (uint, Option<uint>) {
-        if let Some(hint) = Step::steps_between(&self.end, &self.start) {
+        if let Some(hint) = Step::steps_between(&self.start, &self.end) {
             (hint, Some(hint))
         } else {
             (0, None)