== Quote from Andrei Alexandrescu ([email protected])'s article > However, one-argument calls such as min(collection) seem unambiguous and > valuable to me.
FWIW, I've been using this only slightly more verbose call lately: immutable biggestX = minPos!"a.x > b.x"(someArray).front;
