implicit final class Lift0[R] extends AnyVal
This class enables the lift syntax on any value, which functions as pure as a postfix method.
- Source
- lift.scala
- Alphabetic
- By Inheritance
- Lift0
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Lift0(x: R)
This constructor should not be called manually, it is designed to be used via Scala's implicit resolution.
This constructor should not be called manually, it is designed to be used via Scala's implicit resolution.
- x
the value to lift to the parser level.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def lift: Parsley[R]
This combinator injects a value into the parser level without consuming input.
This combinator injects a value into the parser level without consuming input.
This acts as a postfix verion of the
purecombinator, this exists for consistency with the other arity lifters.- See also
- def toString(): String
- Definition Classes
- Any