Object

com.github.kmizu.macro_peg.combinator

MacroParsers

Related Doc: package combinator

Permalink

object MacroParsers

Source
MacroParsers.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MacroParsers
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class AbstractFailure extends ParseResult[Nothing]

    Permalink
  2. final case class Alternation[T, U >: T](a: MacroParser[T], b: MacroParser[U]) extends MacroParser[U] with Product with Serializable

    Permalink
  3. final case class AndParser[T](p: MacroParser[T]) extends MacroParser[Any] with Product with Serializable

    Permalink
  4. final case class EvalCC[T, U](parser: MacroParser[T], cc: (MacroParser[T]) ⇒ MacroParser[U]) extends MacroParser[U] with Product with Serializable

    Permalink
  5. type Input = String

    Permalink
  6. sealed abstract class MacroParser[+T] extends AnyRef

    Permalink
  7. final case class MappingParser[T, U](parser: MacroParser[T], function: (T) ⇒ U) extends MacroParser[U] with Product with Serializable

    Permalink
  8. final case class NotParser[T](p: MacroParser[T]) extends MacroParser[Any] with Product with Serializable

    Permalink
  9. final case class OptionParser[T](parser: MacroParser[T]) extends MacroParser[Option[T]] with Product with Serializable

    Permalink
  10. type P[+T] = MacroParser[T]

    Permalink
  11. final case class ParseFailure(message: String, next: Input) extends AbstractFailure with Product with Serializable

    Permalink
  12. sealed abstract class ParseResult[+T] extends AnyRef

    Permalink
  13. final case class ParseSuccess[+T](result: T, next: Input) extends ParseResult[T] with Product with Serializable

    Permalink
  14. final case class RangedParser(ranges: Seq[Char]*) extends MacroParser[String] with Product with Serializable

    Permalink
  15. final case class ReferenceParser[T](delayedParser: () ⇒ MacroParser[T]) extends MacroParser[T] with Product with Serializable

    Permalink
  16. final case class Repeat1Parser[T](parser: MacroParser[T]) extends MacroParser[List[T]] with Product with Serializable

    Permalink
  17. final case class RepeatParser[T](parser: MacroParser[T]) extends MacroParser[List[T]] with Product with Serializable

    Permalink
  18. final case class RewritableParser[T](p: MacroParser[T]) extends MacroParser[T] with Product with Serializable

    Permalink
  19. implicit final class RichString extends AnyVal

    Permalink
  20. final case class Sequence[T, U](a: MacroParser[T], b: MacroParser[U]) extends MacroParser[~[T, U]] with Product with Serializable

    Permalink
  21. final case class StringParser(literal: String) extends MacroParser[String] with Product with Serializable

    Permalink
  22. final case class StringWithValueParser[T](literal: String, value: T) extends MacroParser[T] with Product with Serializable

    Permalink
  23. case class ~[+A, +B](_1: A, _2: B) extends Product with Serializable

    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. object AnyParser extends MacroParser[String] with Product with Serializable

    Permalink
  5. def any: AnyParser.type

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def chainl[A](p: MacroParser[A])(q: MacroParser[(A, A) ⇒ A]): MacroParser[A]

    Permalink
  8. implicit def characterRangesToParser(ranges: Seq[Seq[Char]]): RangedParser

    Permalink
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  18. def range(ranges: Seq[Char]*): RangedParser

    Permalink
  19. def refer[T](parser: ⇒ MacroParser[T]): ReferenceParser[T]

    Permalink
  20. def rewritable[T](parser: MacroParser[T]): RewritableParser[T]

    Permalink
  21. def string(literal: String): StringParser

    Permalink
  22. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    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 AnyRef

Inherited from Any

Ungrouped