mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
8 lines
187 B
Swift
8 lines
187 B
Swift
public protocol Awaitable {
|
|
associatedtype Result
|
|
func waitForNothing() async
|
|
func waitForInt() async -> Int
|
|
func wait() async -> Result
|
|
func wait(orThrow: Bool) async throws
|
|
}
|