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 5f21c12 commit 62549c8Copy full SHA for 62549c8
stdlib/public/core/StringBridge.swift
@@ -12,14 +12,15 @@
12
13
import SwiftShims
14
15
+/// Effectively an untyped NSString that doesn't require foundation.
16
+@usableFromInline
17
+internal typealias _CocoaString = AnyObject
18
+
19
#if _runtime(_ObjC)
20
// Swift's String bridges NSString via this protocol and these
21
// variables, allowing the core stdlib to remain decoupled from
22
// Foundation.
23
-/// Effectively an untyped NSString that doesn't require foundation.
-public typealias _CocoaString = AnyObject
-
24
@usableFromInline // @testable
25
@_effects(releasenone)
26
internal func _stdlib_binary_CFStringCreateCopy(
0 commit comments