scala.util.parsing.combinator.testing.RegexTest
ParseResult
class
ParseResult[+T] extends AnyRef
Value Members
-
-
def
equals(arg0: Any): Boolean
-
-
def
get: T
-
def
getOrElse[B >: T](default: ⇒ B): B
-
def
hashCode(): Int
-
def
isEmpty: Boolean
-
def
map[U](f: (T) ⇒ U): ParseResult[U]
-
def
mapPartial[U](f: PartialFunction[T, U], error: (T) ⇒ String): ParseResult[U]
-
val
next: Reader[Elem]
-
val
successful: Boolean
-
def
toString(): String
Instance constructors
-
new
ParseResult()
A base class for parser results. A result is either successful or not (failure may be fatal, i.e., an Error, or not, i.e., a Failure) On success, provides a result of type
T
.