Carrot reference
Methods

.max{}

Returns the largest value of a Sequence or List, optionally evaluating an expression.

Syntax

.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.

Examples

  • [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.