Scala Library Documentation
|
|
sealed abstract
class
ParseResult[+T]
extends
AnyRefT
.Value Summary | |
abstract val
|
next : Reader |
abstract val
|
successful : Boolean |
Method Summary | |
abstract def
|
get
: T
Returns the embedded result
|
def
|
getOrElse [B >: T](default : => B) : B |
def
|
isEmpty : Boolean |
abstract def
|
map
[U](f : (T) => U) : ParseResult[U]
Functional composition of ParseResults
|
abstract def
|
mapPartial
[U](f : PartialFunction[T, U], error : (T) => String) : ParseResult[U]
Partial functional composition of ParseResults
|
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Scala Library Documentation
|
|