Return Value 戻り値
true
if the sequence contains only elements that satisfy predicate
; otherwise, false
.
true
、もしシーケンスがpredicate
を満たす要素だけを含むならば;そうでなければ、false
。
Availability 有効性
Technology
true
if the sequence contains only elements that satisfy predicate
; otherwise, false
.
true
、もしシーケンスがpredicate
を満たす要素だけを含むならば;そうでなければ、false
。
predicate
A closure that takes an element of the sequence as its argument and returns a Boolean value that indicates whether the passed element satisfies a condition. あるクロージャ、それはこのシーケンスの1つの要素をそれの引数として取り、渡された要素があるコレクションを満たすものであるかどうかを指し示すブール値を返します。
The following code uses this method to test whether all the names in an array have at least five characters: 以下のコードはこのメソッドを使って、配列の中の全ての名前が少なくとも5つの文字を持つかどうかを試験します:
let names = ["Sofia", "Camilla", "Martina", "Mateo", "Nicolás"]
let allHaveAtLeastFive = names.allSatisfy({ $0.count >= 5 })
// allHaveAtLeastFive == true
Complexity
O(n), where n is the length of the sequence.