We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Sendable
Collection
1 parent ad27868 commit 15747c4Copy full SHA for 15747c4
Sources/NonEmpty/NonEmpty.swift
@@ -84,6 +84,10 @@ extension NonEmpty: Comparable where Collection: Comparable {
84
}
85
86
87
+#if canImport(_Concurrency) && compiler(>=5.5)
88
+extension NonEmpty: Sendable where Collection: Sendable {}
89
+#endif
90
+
91
extension NonEmpty: Encodable where Collection: Encodable {
92
public func encode(to encoder: Encoder) throws {
93
do {
0 commit comments