swift3.0 自定义运算符

运算符修饰
左:prefix
右:postfix
中:infix

// 自定义操作符 别名类型
infix operator >>> : ATPrecedence
precedencegroup ATPrecedence {
    associativity: left
    higherThan: AdditionPrecedence
    lowerThan: MultiplicationPrecedence
}

你可能感兴趣的:(swift3.0 自定义运算符)