trait TimesOnInt extends AnyRef
Trait providing an implicit conversion that adds a times
method to Int
s that
will repeat a given side-effecting operation multiple times.
Here's an example in which a friendly greeting is printed three times:
3 times println("Hello again, world!")
Running the above code would yield this output:
Hello again, world! Hello again, world! Hello again, world!
If you need to repeat a block of statements multiple times, just enclose them in parentheses, like this:
2 times { print("Hello ") print("again, ") println("world!") }
Running the above code would yield:
Hello again, world! Hello again, world!
This trait enables times
to be invoked on 0 and any positive integer,
but attempting to invoke times
on a negative integer will result in an IllegalArgumentException
.
- Source
- TimesOnInt.scala
- Alphabetic
- By Inheritance
- TimesOnInt
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
class
Repeater extends AnyRef
Class used via an implicit conversion to enable a
times
method to be invoked onInt
s to repeat a given side-effecting operation multiple times.Class used via an implicit conversion to enable a
times
method to be invoked onInt
s to repeat a given side-effecting operation multiple times.When an instance of this class is constructed, 0 and any positive number may be passed as
num
, but a negative number will result in anIllegalArgumentException
. If constructed with 0, thetimes
method on the resulting instance will return without invoking the function passed to it. If constructed with 1, thetimes
method will invoke the function passed to it once then return.- Exceptions thrown
IllegalArgumentException
ifnum
is less than zero.
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
implicit
def
convertIntToRepeater(num: Int): Repeater
Implicit conversion that adds a
times
method toInt
s that will repeat a given side-effecting operation multiple times.Implicit conversion that adds a
times
method toInt
s that will repeat a given side-effecting operation multiple times.- num
the integer to which the
times
method will be added.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )