func next() -> ChildTaskResult?
Wait for the next child task to complete, and return the value it returned or rethrow the error it threw.
次の子タスクが完了するのを待ちます、そしてそれが返した値を返します、またはそれがスローしたエラーを再スローします。
func nextResult () -> Result<ChildTaskResult, Failure>?
Wait for the next child task to complete, and return a result containing either the value that the child task returned or the error that it threw.
次の子タスクが完了するのを待機します、そして子タスクが返した値またはそれがスローしたエラーのどちらかを含んでいる値を返します。
var isEmpty : Bool
A Boolean value that indicates whether the group has any remaining tasks.
あるブール値、それはグループが何か残っているタスクを持つかどうかを指し示します。