Add math.min() and math.max() to rolling functions

This commit is contained in:
Tobie Morgan Hitchcock 2018-04-29 14:43:12 +01:00
parent 05f8b6ad6b
commit efaccb8afa

View file

@ -27,8 +27,9 @@ var rolls = map[string]bool{
// Math implementation // Math implementation
"math.geometricmean": true, "math.geometricmean": true,
"math.max": true,
"math.mean": true, "math.mean": true,
"math.percentile": true, "math.min": true,
"math.stddev": true, "math.stddev": true,
"math.sum": true, "math.sum": true,
"math.variance": true, "math.variance": true,