Hoppa till huvudinnehåll

List.MatchesAll

Returnerar true om alla värden i listan uppfyller condition-funktionen.

Syntax

List.MatchesAll(
list as list,
condition as function
) as logical

Remarks

Returnerar true om alla värden i listan list uppfyller condition-funktionen, condition. Annars returneras false.

Examples

Example #1

Kontrollera om alla värden i listan {11, 12, 13} är större än 10.

List.MatchesAll({11, 12, 13}, each _  > 10)

Result:

true

Example #2

Kontrollera om alla värden i listan {1, 2, 3} är större än 10.

List.MatchesAll({1, 2, 3}, each _  > 10)

Result:

false

Category

List.Selection