mirror of
https://github.com/gohugoio/hugo.git
synced 2025-05-06 18:56:32 +03:00
14 lines
290 B
Markdown
14 lines
290 B
Markdown
---
|
|
title: math.Sum
|
|
description: Returns the sum of all numbers. Accepts scalars, slices, or both.
|
|
categories: []
|
|
params:
|
|
functions_and_methods:
|
|
aliases: []
|
|
returnType: float64
|
|
signatures: [math.Sum VALUE...]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ math.Sum 1 (slice 2 3) 4 }} → 10
|
|
```
|