8 lines
182 B
Go
8 lines
182 B
Go
package tins2020
|
|
|
|
import "math"
|
|
|
|
func Ceil32(x float32) float32 { return float32(math.Ceil(float64(x))) }
|
|
|
|
func Floor32(x float32) float32 { return float32(math.Floor(float64(x))) }
|