object enclosing
This object contains helper combinators for parsing terms enclosed by common symbols.
- Source
- Lexer.scala
- Since
4.0.0
- Alphabetic
- By Inheritance
- enclosing
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def angles[A](p: => Parsley[A]): Parsley[A]
This combinator parses a
penclosed within angle brackets.This combinator parses a
penclosed within angle brackets.First parse an open bracket, any whitespace, then parse,
p, producingx. Finally, parse a closing bracket and any whitespace. If all three parts succeeded, then returnx. If any of them failed, this combinator fails.- p
the parser to parse between parentheses.
- returns
a parser that reads an open bracket, then
p, then a closing bracket and returns the result ofp.
scala> ... scala> val p = lexer.nonlexeme.enclosing.brackets(int) scala> p.parse("< 5>") val res0 = Success(5) scala> p.parse("<5") val res1 = Failure(...) scala> p.parse("5>") val res2 = Failure(...)
- Since
4.0.0
Example: - final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def braces[A](p: => Parsley[A]): Parsley[A]
This combinator parses a
penclosed within braces.This combinator parses a
penclosed within braces.First parse an open brace, any whitespace, then parse,
p, producingx. Finally, parse a closing brace and any whitespace. If all three parts succeeded, then returnx. If any of them failed, this combinator fails.- p
the parser to parse between parentheses.
- returns
a parser that reads an open brace, then
p, then a closing brace and returns the result ofp.
scala> ... scala> val p = lexer.nonlexeme.enclosing.braces(int) scala> p.parse("{ 5}") val res0 = Success(5) scala> p.parse("{5") val res1 = Failure(...) scala> p.parse("5}") val res2 = Failure(...)
- Since
4.0.0
Example: - def brackets[A](p: => Parsley[A]): Parsley[A]
This combinator parses a
penclosed within square brackets.This combinator parses a
penclosed within square brackets.First parse an open bracket, any whitespace, then parse,
p, producingx. Finally, parse a closing bracket and any whitespace. If all three parts succeeded, then returnx. If any of them failed, this combinator fails.- p
the parser to parse between parentheses.
- returns
a parser that reads an open bracket, then
p, then a closing bracket and returns the result ofp.
scala> ... scala> val p = lexer.nonlexeme.enclosing.brackets(int) scala> p.parse("[ 5]") val res0 = Success(5) scala> p.parse("[5") val res1 = Failure(...) scala> p.parse("5]") val res2 = Failure(...)
- Since
4.0.0
Example: - def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def parens[A](p: => Parsley[A]): Parsley[A]
This combinator parses a
penclosed within parentheses.This combinator parses a
penclosed within parentheses.First parse an open parenthesis, any whitespace, then parse,
p, producingx. Finally, parse a closing parenthesis and any whitespace. If all three parts succeeded, then returnx. If any of them failed, this combinator fails.- p
the parser to parse between parentheses.
- returns
a parser that reads an open parenthesis, then
p, then a closing parenthesis and returns the result ofp.
scala> ... scala> val p = lexer.nonlexeme.enclosing.parens(int) scala> p.parse("( 5)") val res0 = Success(5) scala> p.parse("(5") val res1 = Failure(...) scala> p.parse("5)") val res2 = Failure(...)
- Since
4.0.0
Example: - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()