final case class TransformResult(onSuccess: (Any) => Any, onFailure: (ParserError[Any]) => ParserError[Any]) extends ParserOp with Product with Serializable

Pop the last result from the stack, transform it and with one of the functions and push back. It is possible to pass null to onSuccess or onFailure in which case it does not touch the result.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TransformResult
  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 TransformResult(onSuccess: (Any) => Any, onFailure: (ParserError[Any]) => ParserError[Any])

Value Members

  1. val needsEmptyResultSlot: Boolean
    Definition Classes
    TransformResultParserOp
  2. val onFailure: (ParserError[Any]) => ParserError[Any]
  3. val onSuccess: (Any) => Any
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product