mirror of
https://github.com/github/semantic.git
synced 2024-11-30 14:47:30 +03:00
10 lines
286 B
Swift
10 lines
286 B
Swift
extension StringLiteralConvertible {
|
|
public init(unicodeScalarLiteral: Self.StringLiteralType) {
|
|
self.init(stringLiteral: unicodeScalarLiteral)
|
|
}
|
|
|
|
public init(extendedGraphemeClusterLiteral: Self.StringLiteralType) {
|
|
self.init(stringLiteral: extendedGraphemeClusterLiteral)
|
|
}
|
|
}
|