Lift0

parsley.syntax.Lift0
final class Lift0[R] extends AnyVal

This class implements the lift syntax on any value, which functions as pure as a postfix method.

Value parameters

x

the value to lift to the parser level.

Attributes

Source
lift.scala
Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

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 pure combinator, this exists for consistency with the other arity lifters.

Attributes

Returns
See also
Source
lift.scala