|
Scala Library
|
|
trait
OnceParser[+T]
extends Parser[T]| Method Summary | |
override def
|
~
[Q](q : => Q)(implicit view$20 : (Q) => UnitParser) : Parser[T]
A parser combinator for sequential composition with a unit-parser
|
override def
|
~
[U](q : => Parser[U]) : Parser[~[T, U]]
A parser combinator for sequential composition
|
| Methods inherited from Parser | |
| apply (abstract), ~!, ~!, |, |||, ^^, ^?, ^?, into, >>, *, *, *, +, ? |
| Methods inherited from Function1 | |
| toString, compose, andThen |
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Method Details |
`p ~ q' succeeds if `p' succeeds and `q' succeeds on the input left over by `p'.
q - a parser that will be executed after `p' (this parser) succeedsoverride
def
~[Q](q : => Q)(implicit view$20 : (Q) => UnitParser) : Parser[T]
`p ~ q' succeeds if `p' succeeds and `q' succeeds on the input left over by `p'.
q - a parser (convertible to a UnitParser) that will be executed after `p' (this parser) succeeds|
Scala Library
|
|