package math
import "github.com/gohugoio/hugo/tpl/math"
Package math provides template functions for mathematical operations.
Index ¶
- type Namespace
- func New() *Namespace
- func (ns *Namespace) Add(n1, n2 any) (any, error)
- func (ns *Namespace) Ceil(n any) (float64, error)
- func (ns *Namespace) Counter() uint64
- func (ns *Namespace) Div(n1, n2 any) (any, error)
- func (ns *Namespace) Floor(n any) (float64, error)
- func (ns *Namespace) Log(n any) (float64, error)
- func (ns *Namespace) Max(n1, n2 any) (float64, error)
- func (ns *Namespace) Min(n1, n2 any) (float64, error)
- func (ns *Namespace) Mod(n1, n2 any) (int64, error)
- func (ns *Namespace) ModBool(n1, n2 any) (bool, error)
- func (ns *Namespace) Mul(n1, n2 any) (any, error)
- func (ns *Namespace) Pow(n1, n2 any) (float64, error)
- func (ns *Namespace) Round(n any) (float64, error)
- func (ns *Namespace) Sqrt(n any) (float64, error)
- func (ns *Namespace) Sub(n1, n2 any) (any, error)
Types ¶
type Namespace ¶
type Namespace struct{}
Namespace provides template functions for the "math" namespace.
func New ¶
func New() *Namespace
New returns a new instance of the math-namespaced template functions.
func (*Namespace) Add ¶
Add adds the two addends n1 and n2.
func (*Namespace) Ceil ¶
Ceil returns the least integer value greater than or equal to n.
func (*Namespace) Counter ¶
Counter increments and returns a global counter. This was originally added to be used in tests where now.UnixNano did not have the needed precision (especially on Windows). Note that given the parallel nature of Hugo, you cannot use this to get sequences of numbers, and the counter will reset on new builds.
func (*Namespace) Div ¶
Div divides n1 by n2.
func (*Namespace) Floor ¶
Floor returns the greatest integer value less than or equal to n.
func (*Namespace) Log ¶
Log returns the natural logarithm of the number n.
func (*Namespace) Max ¶
Max returns the greater of the two numbers n1 or n2.
func (*Namespace) Min ¶
Min returns the smaller of two numbers n1 or n2.
func (*Namespace) Mod ¶
Mod returns n1 % n2.
func (*Namespace) ModBool ¶
ModBool returns the boolean of n1 % n2. If n1 % n2 == 0, return true.
func (*Namespace) Mul ¶
Mul multiplies the two numbers n1 and n2.
func (*Namespace) Pow ¶
Pow returns n1 raised to the power of n2.
func (*Namespace) Round ¶
Round returns the integer nearest to n, rounding half away from zero.
func (*Namespace) Sqrt ¶
Sqrt returns the square root of the number n.
func (*Namespace) Sub ¶
Sub subtracts n2 from n1.
Source Files ¶
- Version
- v0.99.0
- Published
- May 16, 2022
- Platform
- linux/amd64
- Imports
- 7 packages
- Last checked
- 3 hours ago –
Tools for package owners.