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.
1 parent 91f4cc6 commit 7c9b708Copy full SHA for 7c9b708
Sources/SwiftASCII/ASCIICharacter.swift
@@ -188,6 +188,8 @@ extension ASCIICharacter: Codable {
188
}
189
190
191
+extension ASCIICharacter: Sendable { }
192
+
193
extension ASCIICharacter {
194
public static func + (lhs: ASCIICharacter, rhs: ASCIICharacter) -> ASCIIString {
195
ASCIIString([lhs, rhs])
Sources/SwiftASCII/ASCIIString.swift
@@ -150,6 +150,8 @@ extension ASCIIString: Codable {
150
151
152
153
+extension ASCIIString: Sendable { }
154
155
extension ASCIIString {
156
public static func + (lhs: ASCIIString, rhs: ASCIIString) -> ASCIIString {
157
0 commit comments