swift swift中的关联附加运算符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift swift中的关联附加运算符相关的知识,希望对你有一定的参考价值。
infix operator <~ { associativity left }
func <~<elem> (var list:[elem], elem:elem) -> [elem] {
list.append(elem)
return list
}
[1, 2, 3] <~ 4
//[1, 2, 3, 4]
[1, 2, 3] <~ [5]
//[1, 2, 3, [5]]
//due to associativity being left, the operands are all push to the list on the left
[1] <~ [2] <~ [3]
//[1, [2], [3]]
[1] <~ 2 <~ 3 <~ 5
//[1, 2, 3, 4]
以上是关于swift swift中的关联附加运算符的主要内容,如果未能解决你的问题,请参考以下文章
什么是 Swift 中的面向协议编程?它带来了什么附加价值?
什么是 Swift 中的面向协议编程?它带来了什么附加价值?
Swift-使用委托将数据附加到 CollectionView 中的 TableView
如何从 C 中将新的字符串元素附加到 Swift 中的数组
尝试将数组附加到 Swift 中的其他数组时获取“无关参数标签”
Swift 中的函数将 Pdf 文件附加到另一个 Pdf