OrderedDictionary:Swift 中有序字典的实现以及单元测试

时间:2024-06-21 19:35:09
【文件属性】:

文件名称:OrderedDictionary:Swift 中有序字典的实现以及单元测试

文件大小:14KB

文件格式:ZIP

更新时间:2024-06-21 19:35:09

Swift

有序字典 这是 Swift 中 OrderedDictionary 的简单实现,因为 Apple 不提供默认实现。 它将保持添加对象的顺序。 此外,它是通用的,因此它支持任何 Hashable 键和任何类型的值。 OrderedDictionary 支持与标准字典非常相似的语法。 这意味着您可以使用下标语法并使用元组遍历字典,有关更多详细信息,请参阅示例用法。 #示例用法 var orderedDict = OrderedDictionary() orderedDict["A"] = 100 orderedDict["B"] = 102 orderedDict["C"] = 103 orderedDict["A"] = nil // will remove that element from the dict // supports tuple iterati


【文件预览】:
OrderedDictionary-master
----OrderedDictionary()
--------ViewController.swift(486B)
--------Base.lproj()
--------OrderedDictionary.swift(4KB)
--------AppDelegate.swift(2KB)
--------Images.xcassets()
--------Info.plist(1KB)
----OrderedDictionary.xcodeproj()
--------project.xcworkspace()
--------project.pbxproj(15KB)
----OrderedDictionaryTests()
--------OrderedDictionaryTests.swift(3KB)
--------Info.plist(756B)
----README.md(1KB)

网友评论