final case class Lazy(op: () => ParserOp) extends ParserOp with Product with Serializable

Deferred parser operation, used for recursion

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Lazy
  2. Serializable
  3. Product
  4. Equals
  5. ParserOp
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Lazy(op: () => ParserOp)

Value Members

  1. lazy val memoized: ParserOp
  2. val needsEmptyResultSlot: Boolean
    Definition Classes
    LazyParserOp
  3. val op: () => ParserOp
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product