scala

object GenericRange

[source: scala/GenericRange.scala]

object GenericRange
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 GenericRange[T]
class Inclusive [T](start : T, end : T, step : T, implicit num : Integral[T]) extends GenericRange[T]
Method Details
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]