|
Scala Library
|
|
object
NumericRange
extends AnyRef| Method Summary | |
def
|
apply
[T](start : T, end : T, step : T)(implicit num : Integral[T]) : Exclusive[T]
|
def
|
inclusive
[T](start : T, end : T, step : T)(implicit num : Integral[T]) : Inclusive[T]
|
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Class Summary | |
class
|
Exclusive
[T](start : T, end : T, step : T, implicit num : Integral[T]) extends NumericRange[T]
|
class
|
Inclusive
[T](start : T, end : T, step : T, implicit num : Integral[T]) extends NumericRange[T]
|
| Method Details |
|
Scala Library
|
|