Trait

molecule.parsers.charbuffer

RegexParsers

Related Doc: package charbuffer

Permalink

trait RegexParsers extends Parsers[CharBuffer]

Linear Supertypes
Parsers[CharBuffer], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RegexParsers
  2. Parsers
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. class LitteralParser extends Parser[CharBuffer, String]

    Permalink
  2. class RegexParser extends Parser[CharBuffer, String]

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def accept[U](expected: CharBuffer, f: PartialFunction[CharBuffer, U]): Parser[CharBuffer, U]

    Permalink
    Definition Classes
    Parsers
  5. def accept[ES](es: ES)(implicit arg0: (ES) ⇒ List[CharBuffer]): Parser[CharBuffer, Seg[CharBuffer]]

    Permalink
    Definition Classes
    Parsers
  6. implicit def accept(e: CharBuffer): Parser[CharBuffer, CharBuffer]

    Permalink
    Definition Classes
    Parsers
  7. def acceptAny: Parser[CharBuffer, CharBuffer]

    Permalink
    Definition Classes
    Parsers
  8. def acceptIf(p: (CharBuffer) ⇒ Boolean)(err: (CharBuffer) ⇒ String): Parser[CharBuffer, CharBuffer]

    Permalink
    Definition Classes
    Parsers
  9. def acceptMatch[U](expected: CharBuffer, f: PartialFunction[CharBuffer, U]): Parser[CharBuffer, U]

    Permalink
    Definition Classes
    Parsers
  10. def acceptSeq[ES](es: ES)(implicit arg0: (ES) ⇒ Iterable[CharBuffer]): Parser[CharBuffer, Seg[CharBuffer]]

    Permalink
    Definition Classes
    Parsers
  11. def acceptSignal(signal: Signal): Parser[CharBuffer, Nothing]

    Permalink
    Definition Classes
    Parsers
  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def elem(e: CharBuffer): Parser[CharBuffer, CharBuffer]

    Permalink
    Definition Classes
    Parsers
  15. def elem(kind: String, p: (CharBuffer) ⇒ Boolean): Parser[CharBuffer, CharBuffer]

    Permalink
    Definition Classes
    Parsers
  16. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  18. def fail(msg: ⇒ String): Parser[CharBuffer, Nothing]

    Permalink
    Definition Classes
    Parsers
  19. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. def handleWhiteSpace(source: Seg[CharBuffer]): Seg[CharBuffer]

    Permalink
    Attributes
    protected
  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. implicit def literal(s: String): Parser[CharBuffer, String]

    Permalink

    A parser that matches a literal string

  25. def log[T](p: ⇒ Parser[CharBuffer, T])(name: String): Parser[CharBuffer, T]

    Permalink
    Definition Classes
    Parsers
  26. def mkList[T]: (~[T, List[T]]) ⇒ List[T]

    Permalink
    Definition Classes
    Parsers
  27. def mkSeg[T]: (~[T, Seg[T]]) ⇒ seg.Seg[T]

    Permalink
    Definition Classes
    Parsers
  28. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. def opt[T](p: ⇒ Parser[CharBuffer, T]): Parser[CharBuffer, Option[T]]

    Permalink
    Definition Classes
    Parsers
  32. implicit def parsers: Parsers[CharBuffer]

    Permalink
    Definition Classes
    Parsers
  33. implicit def regex(r: Regex): Parser[CharBuffer, String]

    Permalink

    A parser that matches a regex string

  34. def rep[T](p: ⇒ Parser[CharBuffer, T]): Parser[CharBuffer, Seg[T]]

    Permalink
    Definition Classes
    Parsers
  35. def rep1[T](first: ⇒ Parser[CharBuffer, T], next: ⇒ Parser[CharBuffer, T]): Parser[CharBuffer, Seg[T]]

    Permalink
    Definition Classes
    Parsers
  36. def rep1[T](p: ⇒ Parser[CharBuffer, T]): Parser[CharBuffer, Seg[T]]

    Permalink
    Definition Classes
    Parsers
  37. def rep1sep[T](p: ⇒ Parser[CharBuffer, T], q: ⇒ Parser[CharBuffer, Any]): Parser[CharBuffer, Seg[T]]

    Permalink
    Definition Classes
    Parsers
  38. def repN[T](num: Int, p: ⇒ Parser[CharBuffer, T]): Parser[CharBuffer, Seg[T]]

    Permalink
    Definition Classes
    Parsers
  39. def repsep[T](p: ⇒ Parser[CharBuffer, T], q: ⇒ Parser[CharBuffer, Any]): Parser[CharBuffer, Seg[T]]

    Permalink
    Definition Classes
    Parsers
  40. def skipWhitespace: Boolean

    Permalink
  41. def success[T](v: T): Parser[CharBuffer, T] { ... /* 2 definitions in type refinement */ }

    Permalink
    Definition Classes
    Parsers
  42. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  43. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  44. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. val whiteSpace: Regex

    Permalink
    Attributes
    protected

Deprecated Value Members

  1. def err(msg: ⇒ String): Parser[CharBuffer, CharBuffer]

    Permalink
    Definition Classes
    Parsers
    Annotations
    @deprecated
    Deprecated

    (Since version r95) Use fail(msg: => String): Parser[ByteBuffer, Nothing] in stead. Not to be confused with scala.Predef.error(msg:String):Nothing or sys.error(msg:String):Nothing, which will generate a runtime error

Inherited from Parsers[CharBuffer]

Inherited from AnyRef

Inherited from Any

Ungrouped