scala.util.parsing

class Parsers

[source: scala/util/parsing/Parsers.scala]

@deprecated

abstract class Parsers
extends AnyRef
Documentation for this class is currently missing. However, the Scala By Examples document contains a chapter on combinator parsing that comes close.
Author
Burak Emir
Version
1.0
Deprecated
use scala.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