Školenie
Modul
Select, sort, and measure objects using the pipeline - Training
This module explains how to manipulate objects in the pipeline by using commands that sort, select, and measure objects.
Tento prehliadač už nie je podporovaný.
Inovujte na Microsoft Edge a využívajte najnovšie funkcie, aktualizácie zabezpečenia a technickú podporu.
List.Select(list as list, selection as function) as list
Vráti zoznam hodnôt zo zoznamu list
, ktoré spĺňajú podmienku výberu selection
.
Nájdite hodnoty v zozname {1, -3, 4, 9, -2}, ktoré sú väčšie ako 0.
používania
List.Select({1, -3, 4, 9, -2}, each _ > 0)
výstupu
{1, 4, 9}
Školenie
Modul
Select, sort, and measure objects using the pipeline - Training
This module explains how to manipulate objects in the pipeline by using commands that sort, select, and measure objects.