Carrot reference
Methods
.max{}
.max()
- Returns the largest numeric value in the Sequence or List.
.max{expression}
- Returns the largest value, after evaluating the Carrot expression on each element of the Sequence or List.
- [1, 2, 3].max() returns 3
- [1, 2, 3].max{it * 3} returns 9
- db.job.find{dept:engineering}.max{baseComp} returns the highest base compensation in the Engineering department.