Precedence

interface Precedence

Determines the order of operations in the absence of parentheses.

For example, multiplication (conventionally) has higher precedence than addition, so x + y * z is parsed as x + (y * z).

Functions

Link copied to clipboard
open fun compareTo(other: Precedence): Order

Determines the Order of this precedence with respect to other.

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard