scala.util.parsing.combinator.Parsers
Success
class
Success[+T](result: T, next: Reader[Elem]) extends ParseResult[T] with Product
Inherited
- Hide All
- Show all
- Product
- Equals
- ParseResult
- AnyRef
- Any
Instance constructors
-
new
Success(result: T, next: Reader[Elem])
Value Members
-
def
!=(arg0: AnyRef): Boolean
-
def
!=(arg0: Any): Boolean
-
def
##(): Int
-
def
$asInstanceOf[T0](): T0
-
def
$isInstanceOf[T0](): Boolean
-
def
==(arg0: AnyRef): Boolean
-
def
==(arg0: Any): Boolean
-
-
def
asInstanceOf[T0]: T0
-
def
canEqual(arg0: Any): Boolean
-
def
clone(): AnyRef
-
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
-
def
get: T
-
def
getClass(): java.lang.Class[_ <: java.lang.Object]
-
def
getOrElse[B >: T](default: ⇒ B): B
-
def
hashCode(): Int
-
def
isEmpty: Boolean
-
def
isInstanceOf[T0]: Boolean
-
def
map[U](f: (T) ⇒ U): Success[U]
-
def
mapPartial[U](f: PartialFunction[T, U], error: (T) ⇒ String): ParseResult[U]
-
def
ne(arg0: AnyRef): Boolean
-
val
next: Reader[Elem]
-
def
notify(): Unit
-
def
notifyAll(): Unit
-
def
productArity: Int
-
def
productElement(arg0: Int): Any
-
def
productElementName(n: Int): String
-
def
productElements: Iterator[Any]
-
def
productIterator: Iterator[Any]
-
def
productPrefix: String
-
val
result: T
-
val
successful: Boolean
-
def
synchronized[T0](arg0: T0): T0
-
def
toString(): String
-
def
wait(): Unit
-
def
wait(arg0: Long, arg1: Int): Unit
-
def
wait(arg0: Long): Unit
The success case of ParseResult: contains the result and the remaining input .
The parser's output
The parser's remaining input