final case class TransformResultFlipped(onSuccess: (Int, Any) => ParserError[Any], onFailure: (Int, ParserError[Any]) => 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 converts success to failure and failure to success.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TransformResultFlipped
- Serializable
- Product
- Equals
- ParserOp
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new TransformResultFlipped(onSuccess: (Int, Any) => ParserError[Any], onFailure: (Int, ParserError[Any]) => Any)
Value Members
- val needsEmptyResultSlot: Boolean
- Definition Classes
- TransformResultFlipped → ParserOp
- val onFailure: (Int, ParserError[Any]) => Any
- val onSuccess: (Int, Any) => ParserError[Any]
- def productElementNames: Iterator[String]
- Definition Classes
- Product