func next() -> ChildTaskResult?
Wait for the next child task to complete, and return the value it returned.
次の子タスクが完了するのを待機します、そしてそれが返した値を返します。
func waitForAll ()
Wait for all of the group’s remaining tasks to complete.
Availability
Technology
var isEmpty: Bool
{ get }
true
if the group has no pending tasks; otherwise false
.
true
、もしグループが未解決タスクを持たないならば;そうでなければfalse
。
At the start of the body of a with
call, the task group is always empty.
with
呼び出しの本体の始まりでは、タスクグループは常に空です。
It`s guaranteed to be empty when returning from that body because a task group waits for all child tasks to complete before returning.
func next() -> ChildTaskResult?
func waitForAll ()