wide/vendor/golang.org/x/tools/go/exact/go14.go

14 lines
282 B
Go
Raw Normal View History

2018-03-13 06:47:32 +03:00
// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build go1.4
package exact
import "math/big"
func ratToFloat32(x *big.Rat) (float32, bool) {
return x.Float32()
}