Returns the maximum value of an iterable as it changes. Streaming result: works with endless iterables.
// Rank values by their 'v' fieldconst rank = (a,b) => a.v > b.v;min([ {i:0,v:1}, {i:1,v:9}, {i:2,v:-2}], rank);// Yields: {i:0,v:1}, {i:1,v:9} Copy
// Rank values by their 'v' fieldconst rank = (a,b) => a.v > b.v;min([ {i:0,v:1}, {i:1,v:9}, {i:2,v:-2}], rank);// Yields: {i:0,v:1}, {i:1,v:9}
Iterable
Should return true if a is greater than b.
a
b
Iterable of maximum values
Optional
Returns the maximum value of an iterable as it changes. Streaming result: works with endless iterables.
Param: it
Iterable
Param: gt
Should return true if
a
is greater thanb
.Returns
Iterable of maximum values