Greatest element of a list: Difference between revisions

Content deleted Content added
Hout (talk | contribs)
Hout (talk | contribs)
Line 2,535:
const maximumByMay = f =>
// Nothing, if the list is empty,
// or just the maximum value when compared in
// in terms of f.
xs => Boolean(xs.length) ? (
Just(xs.slice(1).reduce(