Skip to content
This repository has been archived by the owner on Oct 17, 2021. It is now read-only.

Operator_Kind

Mattt edited this page Aug 2, 2020 · 6 revisions

Operator.Kind

The kind of operator (prefix, infix, or postfix).

public enum Kind

Inheritance

Codable, Hashable, String

Enumeration Cases

prefix

A unary operator that comes before its operand.

case prefix

infix

An binary operator that comes between its operands.

case infix

postfix

A unary operator that comes after its operand.

case postfix
Clone this wiki locally