Skip to content

Commit 18ff09e

Browse files
Merge pull request #1 from RayZhao1998/feature/swift5.2
Migrated to Swift5.2
2 parents 9bb5652 + 8985a9f commit 18ff09e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Sources/TSet.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
import Foundation
2121

2222
public struct TSet<Element : TSerializable & Hashable> : SetAlgebra, Hashable, Collection, ExpressibleByArrayLiteral, TSerializable {
23+
24+
public func makeIterator() -> Storage.Iterator {
25+
return storage.makeIterator()
26+
}
27+
2328
/// Typealias for Storage type
2429
public typealias Storage = Set<Element>
2530

0 commit comments

Comments
 (0)