mirror of
https://github.com/gohugoio/hugo.git
synced 2025-05-08 19:59:23 +03:00
15 lines
306 B
Markdown
15 lines
306 B
Markdown
---
|
|
title: math.Min
|
|
description: Returns the smaller of all numbers. Accepts scalars, slices, or both.
|
|
categories: []
|
|
keywords: []
|
|
params:
|
|
functions_and_methods:
|
|
aliases: []
|
|
returnType: float64
|
|
signatures: [math.Min VALUE...]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ math.Min 1 (slice 2 3) 4 }} → 1
|
|
```
|