cfor

object cfor extends CforSyntax
class Object
trait Matchable
class Any

Type members

Inherited types

final
type RangeElem[X <: RangeLike] = X match { case Range => Int case NumericRange[Long] => Long }
Inherited from
CforSyntax
final
type RangeLike = Range | NumericRange[Long]
Inherited from
CforSyntax

Value members

Inherited methods

inline
def cfor[A](inline init: A)(inline test: A => Boolean, inline next: A => A)(inline body: A => Unit): Unit
Inherited from
CforSyntax
inline
def cforRange[R <: RangeLike](inline r: R)(inline body: RangeElem[R] => Unit): Unit
Inherited from
CforSyntax
inline
def cforRange2[R <: RangeLike](inline r1: R, inline r2: R)(inline body: (RangeElem[R], RangeElem[R]) => Unit): Unit
Inherited from
CforSyntax