You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`get`/`set` member functions | Imported as computed property (since Swift-5.7) |
58
-
|`const`/non-`const` member function overload set | Both overloads are imported as a method, with non-`const` method being renamed to `mutating…`. (since Swift-5.7). This will change in a future version of Swift|
57
+
|`get`/`set` member functions | Imported as computed property (starting from Swift-5.7) |
58
+
|`const`/non-`const` member function overload set | Both overloads are imported as a method, with non-`const` method being renamed to `mutating…` (starting from Swift-5.7). The renaming logic will change in a future version of Swift, and non-`const` methods won't be renamed|
59
59
60
60
61
61
Unless stated otherwise (i.e., imported reference types) all Swift features work with imported types. For example: use in generic contexts, protocol conformance, extensions, etc.
62
62
63
63
64
64
### C++ Standard Library Support
65
65
66
-
Libc++ can be imported and used from Swift.
66
+
Parts of libc++ can be imported and used from Swift.
67
67
68
-
This status table describes which of the following C++ standard library features have some experimental support for using them in Swift:
68
+
This status table describes which of the following C++ standard library features have some experimental support for using them in Swift. Please note that this is not a comprehensive list and other libc++ APIs that use the above supported C++ language features could be imported into Swift.
69
69
70
70
|**C++ Standard Library Feature**|**Can Be Used From Swift**|
0 commit comments