Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 310 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 310 Bytes

xmath -- math eXtensions

GoDoc

Quick start

package main

import (
    "fmt"

    "github.com/go-ng/xmath"
)

func main() {
    fmt.Println(xmath.Min(3, 1, 5)) // will print "1"
}