OSet:Swift的快速,惯用的有序集数据结构

时间:2024-05-30 09:27:34
【文件属性】:

文件名称:OSet:Swift的快速,惯用的有序集数据结构

文件大小:11KB

文件格式:ZIP

更新时间:2024-05-30 09:27:34

Swift

奥赛特 Swift的快速,惯用的有序集数据结构。 安装 使用Swift包管理器: . package ( url : " https://github.com/sciv-img/OSet " , from : " 0.5.0 " ) 如果您不想/不能使用SwiftPM,则可以随时复制源代码(这是一个文件)。 用法 OSet通过实现协议,支持标准Set可用的所有相同操作。 例如: 1 > import OSet 2 > let oset1 = OSet ([ 1 , 2 , 3 ]); print (oset1) OSet ([ 1 , 2 , 3 ]) 3 > let oset2 = OSet ([ 3 , 4 , 5 ]); print (oset2) OSet ([ 3 , 4 , 5 ]) 4 > print (oset1. union (oset2)) OSe


【文件预览】:
OSet-master
----.github()
--------FUNDING.yml(23B)
--------workflows()
----Sources()
--------OSet.swift(10KB)
----Tests()
--------LinuxMain.swift(89B)
--------OSetTests()
----LICENSE.md(1KB)
----README.md(2KB)
----.swiftlint.yml(101B)
----Package.swift(348B)
----.gitignore(41B)

网友评论