2018-06-02から1日間の記事一覧

Goのコードリーディング、math.Abs()

math.Abs()のコードリーディング。 src/math/abs.go 関数本体。まずはFloat64bits()とFloat64frombits()を探す。 // Abs returns the absolute value of x. // // Special cases are: // Abs(±Inf) = +Inf // Abs(NaN) = NaN func Abs(x float64) float64 { …