1
0
Fork 0
hugo/docs/content/en/functions/math/Max.md

16 lines
306 B
Markdown

---
title: math.Max
description: Returns the greater of all numbers. Accepts scalars, slices, or both.
categories: []
keywords: []
params:
functions_and_methods:
aliases: []
returnType: float64
signatures: [math.Max VALUE...]
---
```go-html-template
{{ math.Max 1 (slice 2 3) 4 }} → 4
```