Packages

c

SExpLexer

class SExpLexer extends Lexical with SExpTokens

Linear Supertypes
SExpTokens, Lexical, Tokens, Scanners, Parsers, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SExpLexer
  2. SExpTokens
  3. Lexical
  4. Tokens
  5. Scanners
  6. Parsers
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SExpLexer()

Type Members

  1. type Elem = Char
    Definition Classes
    Scanners → Parsers
  2. case class Error extends NoSuccess with Product with Serializable
    Definition Classes
    Parsers
  3. case class ErrorToken extends Token with Product with Serializable
    Definition Classes
    Tokens
  4. case class Failure extends NoSuccess with Product with Serializable
    Definition Classes
    Parsers
  5. type Input = Reader[Elem]
    Definition Classes
    Parsers
  6. sealed abstract class NoSuccess extends ParseResult[Nothing]
    Definition Classes
    Parsers
  7. trait OnceParser[+T] extends Parser[T]
    Definition Classes
    Parsers
  8. sealed abstract class ParseResult[+T] extends AnyRef
    Definition Classes
    Parsers
  9. abstract class Parser[+T] extends (Input) ⇒ ParseResult[T]
    Definition Classes
    Parsers
  10. class Scanner extends Reader[scala.util.parsing.combinator.lexical.Scanners.Token]
    Definition Classes
    Scanners
  11. case class Success[+T] extends ParseResult[T] with Product with Serializable
    Definition Classes
    Parsers
  12. abstract class Token extends AnyRef
    Definition Classes
    Tokens
  13. case class ~[+a, +b] extends Product with Serializable
    Definition Classes
    Parsers
  14. trait SExpToken extends Token with Positional
    Definition Classes
    SExpTokens
  15. case class TBackquote() extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  16. case class TBoolean(b: Boolean) extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  17. case class TCharacter(c: Char) extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  18. case class TDot() extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  19. case class THashParen() extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  20. case class TIdentifier(s: String) extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  21. case class TInteger(n: Int) extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  22. case class TLeftParen() extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  23. case class TQuote() extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  24. case class TReal(n: Double) extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  25. case class TRightParen() extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  26. case class TString(s: String) extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  27. case class TUnquote() extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens
  28. case class TUnquoteSplicing() extends Token with SExpToken with Product with Serializable
    Definition Classes
    SExpTokens

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from SExpLexer to any2stringadd[SExpLexer] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (SExpLexer, B)
    Implicit
    This member is added by an implicit conversion from SExpLexer to ArrowAssoc[SExpLexer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def OnceParser[T](f: (Input) ⇒ ParseResult[T]): Parser[T] with OnceParser[T]
    Definition Classes
    Parsers
  7. def Parser[T](f: (Input) ⇒ ParseResult[T]): Parser[T]
    Definition Classes
    Parsers
  8. def accept[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
    Definition Classes
    Parsers
  9. def accept[ES](es: ES)(implicit arg0: (ES) ⇒ List[Elem]): Parser[List[Elem]]
    Definition Classes
    Parsers
  10. implicit def accept(e: Elem): Parser[Elem]
    Definition Classes
    Parsers
  11. def acceptIf(p: (Elem) ⇒ Boolean)(err: (Elem) ⇒ String): Parser[Elem]
    Definition Classes
    Parsers
  12. def acceptMatch[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
    Definition Classes
    Parsers
  13. def acceptSeq[ES](es: ES)(implicit arg0: (ES) ⇒ Iterable[Elem]): Parser[List[Elem]]
    Definition Classes
    Parsers
  14. def any: Parser[Char]
  15. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  16. def backquote: Parser[SExpToken]
  17. def boolean: Parser[SExpToken]
  18. def chainl1[T, U](first: ⇒ Parser[T], p: ⇒ Parser[U], q: ⇒ Parser[(T, U) ⇒ T]): Parser[T]
    Definition Classes
    Parsers
  19. def chainl1[T](p: ⇒ Parser[T], q: ⇒ Parser[(T, T) ⇒ T]): Parser[T]
    Definition Classes
    Parsers
  20. def chainr1[T, U](p: ⇒ Parser[T], q: ⇒ Parser[(T, U) ⇒ U], combine: (T, U) ⇒ U, first: U): Parser[U]
    Definition Classes
    Parsers
  21. def character: Parser[SExpToken]
  22. def chr(c: Char): Parser[Char]
  23. def chrExcept(cs: Char*): Parser[Elem]
    Definition Classes
    Lexical
  24. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  25. def comment: Parser[String]
  26. def commit[T](p: ⇒ Parser[T]): Parser[T]
    Definition Classes
    Parsers
  27. def delimiter: Parser[Unit]
  28. def digit: Parser[Elem]
    Definition Classes
    Lexical
  29. def dot: Parser[SExpToken]
  30. def elem(e: Elem): Parser[Elem]
    Definition Classes
    Parsers
  31. def elem(kind: String, p: (Elem) ⇒ Boolean): Parser[Elem]
    Definition Classes
    Parsers
  32. def ensuring(cond: (SExpLexer) ⇒ Boolean, msg: ⇒ Any): SExpLexer
    Implicit
    This member is added by an implicit conversion from SExpLexer to Ensuring[SExpLexer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. def ensuring(cond: (SExpLexer) ⇒ Boolean): SExpLexer
    Implicit
    This member is added by an implicit conversion from SExpLexer to Ensuring[SExpLexer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. def ensuring(cond: Boolean, msg: ⇒ Any): SExpLexer
    Implicit
    This member is added by an implicit conversion from SExpLexer to Ensuring[SExpLexer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  35. def ensuring(cond: Boolean): SExpLexer
    Implicit
    This member is added by an implicit conversion from SExpLexer to Ensuring[SExpLexer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. def eoi: Parser[Any]
  37. def eol: Parser[Any]
  38. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  39. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  40. def err(msg: String): Parser[Nothing]
    Definition Classes
    Parsers
  41. def errorToken(msg: String): Token
    Definition Classes
    Tokens
  42. def failure(msg: String): Parser[Nothing]
    Definition Classes
    Parsers
  43. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SExpLexer to StringFormat[SExpLexer] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  44. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  45. def guard[T](p: ⇒ Parser[T]): Parser[T]
    Definition Classes
    Parsers
  46. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  47. def hashParen: Parser[SExpToken]
  48. def identifier: Parser[SExpToken]
  49. def integer: Parser[SExpToken]
  50. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  51. def leftParen: Parser[SExpToken]
  52. def letter: Parser[Elem]
    Definition Classes
    Lexical
  53. def log[T](p: ⇒ Parser[T])(name: String): Parser[T]
    Definition Classes
    Parsers
  54. def mkList[T]: (~[T, List[T]]) ⇒ List[T]
    Definition Classes
    Parsers
  55. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  56. def nonRelevant: Parser[Unit]
  57. def not[T](p: ⇒ Parser[T]): Parser[Unit]
    Definition Classes
    Parsers
  58. def notEol: Parser[Char]
  59. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  60. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  61. def number: Parser[SExpToken]
  62. def opt[T](p: ⇒ Parser[T]): Parser[Option[T]]
    Definition Classes
    Parsers
  63. def phrase[T](p: Parser[T]): Parser[T]
    Definition Classes
    Parsers
  64. def positioned[T <: Positional](p: ⇒ Parser[T]): Parser[T]
    Definition Classes
    Parsers
  65. def quote: Parser[SExpToken]
  66. def real: Parser[SExpToken]
  67. def rep[T](p: ⇒ Parser[T]): Parser[List[T]]
    Definition Classes
    Parsers
  68. def rep1[T](first: ⇒ Parser[T], p0: ⇒ Parser[T]): Parser[List[T]]
    Definition Classes
    Parsers
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The p0 call-by-name arguments is evaluated at most once per constructed Parser object, instead of on every need that arises during parsing.

  69. def rep1[T](p: ⇒ Parser[T]): Parser[List[T]]
    Definition Classes
    Parsers
  70. def rep1sep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]
    Definition Classes
    Parsers
  71. def repN[T](num: Int, p: ⇒ Parser[T]): Parser[List[T]]
    Definition Classes
    Parsers
  72. def repsep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]
    Definition Classes
    Parsers
  73. def rightParen: Parser[SExpToken]
  74. def sign: Parser[Option[Char]]
  75. def string: Parser[SExpToken]
  76. def stringContent: Parser[String]
  77. def stringContentNoEscape: Parser[String]
  78. def success[T](v: T): Parser[T]
    Definition Classes
    Parsers
  79. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  80. def toString(): String
    Definition Classes
    AnyRef → Any
  81. def token: Parser[SExpToken]
    Definition Classes
    SExpLexer → Scanners
  82. def unquote: Parser[SExpToken]
  83. def unquoteSplicing: Parser[SExpToken]
  84. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  85. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  86. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  87. def whitespace: Parser[String]
    Definition Classes
    SExpLexer → Scanners
  88. def whitespaceChar: Parser[Elem]
    Definition Classes
    Lexical
  89. def [B](y: B): (SExpLexer, B)
    Implicit
    This member is added by an implicit conversion from SExpLexer to ArrowAssoc[SExpLexer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from SExpTokens

Inherited from Lexical

Inherited from Tokens

Inherited from Scanners

Inherited from Parsers

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from SExpLexer to any2stringadd[SExpLexer]

Inherited by implicit conversion StringFormat from SExpLexer to StringFormat[SExpLexer]

Inherited by implicit conversion Ensuring from SExpLexer to Ensuring[SExpLexer]

Inherited by implicit conversion ArrowAssoc from SExpLexer to ArrowAssoc[SExpLexer]

Ungrouped