mathutil

package
v0.31.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 9, 2024 License: Unlicense Imports: 1 Imported by: 15

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

func BoolToNumber[T Number](cond bool) (res T)

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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL