Removed unnecessary iteratorStart property of ranges.

This commit is contained in:
Evgeny Gerashchenko
2013-01-22 21:14:10 +04:00
parent eb8107115d
commit 9cd67dfc5c
7 changed files with 1 additions and 36 deletions
-10
View File
@@ -11,8 +11,6 @@ public class IntRange(public val start : Int, public val size : Int) : Range<Int
public val end : Int
public val iteratorStart : Int
public fun step(step: Int) : IntIterator
public val isReversed : Boolean
@@ -27,8 +25,6 @@ public class LongRange(public val start : Long, public val size : Long) : Range<
public override fun contains (elem: Long) : Boolean
public val iteratorStart : Long
public val end : Long
public fun step(step: Long) : LongIterator
@@ -47,8 +43,6 @@ public class ByteRange(public val start : Byte, public val size : Int) : Range<B
public val end : Byte
public val iteratorStart : Byte
public fun step(step: Int) : ByteIterator
public val isReversed : Boolean
@@ -63,8 +57,6 @@ public class ShortRange(public val start : Short, public val size : Int) : Range
public override fun contains (elem: Short) : Boolean
public val iteratorStart : Short
public val end : Short
public fun step(step: Int) : ShortIterator
@@ -81,8 +73,6 @@ public class CharRange(public val start : Char, public val size : Int) : Range<C
public override fun contains (elem: Char) : Boolean
public val iteratorStart : Char
public val end : Char
public fun step(step: Int) : CharIterator