mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-14 08:40:09 -04:00
16 lines
302 B
Markdown
16 lines
302 B
Markdown
---
|
|
title: math.Floor
|
|
description: Returns the greatest integer value less than or equal to the given number.
|
|
categories: []
|
|
keywords: []
|
|
params:
|
|
functions_and_methods:
|
|
aliases: []
|
|
returnType: float64
|
|
signatures: [math.Floor VALUE]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ math.Floor 1.9 }} → 1
|
|
```
|