Binary

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

The precedence, binding direction and build function for a binary operator.

Constructors

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

Properties

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