Scala Library Documentation
|
|
trait
UnitOnceParser
extends
UnitParserMethod Summary | |
override def
|
~
[U](q : => Parser[U]) : Parser[U]
A parser combinator for sequential composition
`p ~ q' succeeds if `p' succeeds and `q' succeeds on the input left over by `p'. |
override def
|
~
[A](q : => A)(implicit view$19 : (A) => UnitParser) : UnitParser
A parser combinator for sequential composition with a unit-parser
`p ~ q' succeeds if `p' succeeds and `q' succeeds on the input left over by `p'. |
Methods inherited from UnitParser | |
apply (abstract), ~!, ~!, |, ^^ |
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 |
Scala Library Documentation
|
|