|
Scala Library
|
|
scala/Responder.scala]
abstract
class
Responder[+A]
extends AnyRef| Method Summary | |
def
|
filter (p : (A) => Boolean) : Responder[A] |
def
|
flatMap [B](f : (A) => Responder[B]) : Responder[B] |
def
|
foreach (k : (A) => Unit) : Unit |
def
|
map [B](f : (A) => B) : Responder[B] |
abstract def
|
respond (k : (A) => Unit) : Unit |
| 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 |
|
Scala Library
|
|