Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 198 Bytes

function.HH.Lib.Math.max_by.md

File metadata and controls

9 lines (9 loc) · 198 Bytes
$items = vec[tuple('foo', 9), tuple('bar', 8), tuple('baz', 7)];
$maxItem = Math\max_by($items, $item ==> $item[1]);
echo "The max item is " . $maxItem[0];

Ouput

The max item is foo