Skip to content

Instantly share code, notes, and snippets.

@jbsmith7741
Created July 2, 2020 19:57
Show Gist options
  • Save jbsmith7741/d41cf55d323ae77aab3fad007f2d6060 to your computer and use it in GitHub Desktop.
Save jbsmith7741/d41cf55d323ae77aab3fad007f2d6060 to your computer and use it in GitHub Desktop.
truncate float
func trunc(val float64, digit int) float64 {
pow := math.Pow(10.0, float64(digit))
return math.Floor(pow*val) / pow
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment