|
Scala Library Documentation
|
|
scala/util/parsing/Parsers.scala]
abstract
class
Parsers
extends AnyRef| 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 Documentation
|
|