Documentation ¶
Overview ¶
Package mathutil contains generic helpers for common algorithms and mathematic operations.
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BoolToNumber ¶
BoolToNumber returns 1 if cond is true and 0 otherwise.
Example ¶
package main import ( "fmt" "github.com/AdguardTeam/golibs/mathutil" ) func main() { fmt.Println(mathutil.BoolToNumber[int](true)) fmt.Println(mathutil.BoolToNumber[int](false)) type flag float64 fmt.Println(mathutil.BoolToNumber[flag](true)) fmt.Println(mathutil.BoolToNumber[flag](false)) }
Output: 1 0 1 0
Types ¶
type Number ¶
type Number interface { constraints.Integer | constraints.Float }
Number is a type constraint for all numbers.
Click to show internal directories.
Click to hide internal directories.