Instance Property インスタンスプロパティ

isEmpty

A Boolean value that indicates whether the group has any remaining tasks. あるブール値、それはグループが何か残っているタスクを持つかどうかを指し示します。

Declaration 宣言

var isEmpty: Bool { get }

Return Value 戻り値

true if the group has no pending tasks; otherwise false. true、もしグループが未解決タスクを持たないならば;そうでなければfalse

Discussion 解説

At the start of the body of a withThrowingTaskGroup(of:returning:body:) call, the task group is always empty. It’s guaranteed to be empty when returning from that body because a task group waits for all child tasks to complete before returning. withThrowingTaskGroup(of:returning:body:)呼び出しの本体の始まりでは、タスクグループは常に空です。その本体から返る時に空であることは保証されます、なぜならタスクグループは全ての子タスクが完了するのを復帰する前に待つからです。

See Also 参照

Accessing Individual Results 個々の結果にアクセスする