mirror of
https://github.com/gohugoio/hugo.git
synced 2025-05-03 00:50:11 +03:00
15 lines
263 B
Markdown
15 lines
263 B
Markdown
---
|
|
title: math.Mod
|
|
description: Returns the modulus of two integers.
|
|
categories: []
|
|
keywords: []
|
|
params:
|
|
functions_and_methods:
|
|
aliases: [mod]
|
|
returnType: int64
|
|
signatures: [math.Mod VALUE1 VALUE2]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ mod 15 3 }} → 0
|
|
```
|