mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This adds new kinds of link entities corresponding to the three dispatch thunk link entity kinds: - DispatchThunkAsyncFunctionPointer - DispatchThunkInitializerAsyncFunctionPointer - DispatchThunkAllocatorAsyncFunctionPointer
5 lines
84 B
Swift
5 lines
84 B
Swift
public protocol Awaitable {
|
|
associatedtype Result
|
|
func wait() async -> Result
|
|
}
|