gw.lang.enhancements.CoreArrayBigDecimalSumEnhancement.gsx Maven / Gradle / Ivy
package gw.lang.enhancements
uses java.math.BigDecimal
/**
* The overloaded versions of the sum() method had to be moved to separate enhancements due to the way block type erasure
* works (all blocks with the same arity have the same erasure). Splitting the methods up into different enhancements
* prevents them from conflicting, since they become part of different Java classes.
*
* Copyright 2014 Guidewire Software, Inc.
*/
enhancement CoreArrayBigDecimalSumEnhancement : T[] {
/**
* Sums up the values of the target of the mapper argument
*/
function sum( mapper(elt:T):BigDecimal ) : BigDecimal {
var sum = BigDecimal.ZERO
for( elt in this ) {
sum += mapper( elt )
}
return sum
}
}