Unary

class Unary<S, C, R>(val precedence: Int, val build: (S, C, String, R) -> R) : ConfigurableExpressionParser.Operator<S, C, R>

The precedence and build function for a unary operator.

Constructors

Link copied to clipboard
constructor(precedence: Int, build: (S, C, String, R) -> R)

Properties

Link copied to clipboard
val build: (S, C, String, R) -> R
Link copied to clipboard
open override val precedence: Int