pascalabcnet/TestSuite/intellisense_tests/lambdas12.pas
2021-11-18 20:40:35 +01:00

9 lines
324 B
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

begin
var a := MatrRandomInteger(3,4,1,9);
a.Println;
Println;
var b := a.Cols;
Sort(b, col -> col{@parameter col: array of integer;@}.Sum); // Сортировка с проекцией на ключ
a := MatrByCol(b); // собрать матрицу из массива массивов
a.Println;
end.