File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -46,14 +46,15 @@ let val: String? = await withIdentifiableContinuation { continuation in
46
46
47
47
## Checked/UnsafeContinuation
48
48
49
- ` IdentifiableContinuation ` internally stores either a ` CheckedContinuation ` or ` UnsafeContinuation ` .
49
+ ` IdentifiableContinuation ` internally stores either a checked or unsafe continuation .
50
50
51
- ` CheckedContinuation ` is used by the default methods:
51
+ [ ` CheckedContinuation ` ] ( https://developer.apple.com/documentation/swift/checkedcontinuation ) is used by the default methods:
52
52
53
53
- ` await withIdentifiableContinuation { .. } `
54
54
- ` try await withThrowingIdentifiableContinuation { ... } `
55
55
56
- ` UnsafeContinuation ` is used by the unsafe methods:
56
+
57
+ [ ` UnsafeContinuation ` ] ( https://developer.apple.com/documentation/swift/unsafecontinuation ) is used by the unsafe methods:
57
58
58
59
- ` await withIdentifiableUnsafeContinuation { .. } `
59
60
- ` try await withThrowingIdentifiableUnsafeContinuation { ... } `
You can’t perform that action at this time.
0 commit comments