|
Scala Library
|
|
scala/concurrent/ops.scala]
object
ops
extends AnyRefops ...| Method Summary | |
def
|
future [A](p : => A) : () => A |
def
|
par [A, B](xp : => A, yp : => B) : (A, B) |
def
|
replicate (start : Int, end : Int)(p : (Int) => Unit) : Unit |
def
|
spawn
(p : => Unit) : Unit
Evaluates an expression asynchronously.
|
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Method Details |
p - the expression to evaluatep - ...xp - ...yp - ...start - ...end - ...p - ...|
Scala Library
|
|