author | Christian Urban <christian dot urban at kcl dot ac dot uk> |
Sat, 15 Jun 2013 09:11:11 -0400 | |
changeset 92 | e85600529ca5 |
parent 70 | app7.scala@e6868bd2942b |
permissions | -rw-r--r-- |
abstract class Parser[I, T] { def parse(ts: I): Set[(T, I)] def parse_all(ts: I) : Set[T] = for ((head, tail) <- parse(ts); if (tail.isEmpty)) yield head def || (right : => Parser[I, T]) : Parser[I, T] = new AltParser(this, right) def ==>[S] (f: => T => S) : Parser [I, S] = new FunParser(this, f) def ~[S] (right : => Parser[I, S]) : Parser[I, (T, S)] = new SeqParser(this, right) }