|
Scala Library
|
|
scala/util/parsing/Parsers.scala]
abstract
class
Parsers
extends AnyRefscala.util.parsing.combinator.Parsers
instead.| Type Summary | |
abstract type
|
inputType |
| Method Summary | |
def
|
not [A](p : Parser[A]) : Parser[Unit] |
def
|
opt [A](p : Parser[A]) : Parser[List[A]] |
def
|
rep [A](p : Parser[A]) : Parser[List[A]] |
def
|
rep1 [A](p : Parser[A]) : Parser[List[A]] |
def
|
repWith [A, B](p : Parser[A], sep : Parser[B]) : Parser[List[A]] |
def
|
succeed [A](x : A) : Parser[A] |
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Class Summary | |
abstract class
|
Parser
[A] extends AnyRef
|
| Type Details |
| Method Details |
|
Scala Library
|
|