type math/big.Accuracy
17 uses
math/big (current package)
accuracy_string.go#L20: func (i Accuracy) String() string {
accuracy_string.go#L22: if i < 0 || i >= Accuracy(len(_Accuracy_index)-1) {
float.go#L68: acc Accuracy
float.go#L148: type Accuracy int8
float.go#L152: Below Accuracy = -1
float.go#L153: Exact Accuracy = 0
float.go#L154: Above Accuracy = +1
float.go#L190: func makeAcc(above bool) Accuracy {
float.go#L230: func (x *Float) Acc() Accuracy {
float.go#L741: func (x *Float) Uint64() (uint64, Accuracy) {
float.go#L786: func (x *Float) Int64() (int64, Accuracy) {
float.go#L841: func (x *Float) Float32() (float32, Accuracy) {
float.go#L961: func (x *Float) Float64() (float64, Accuracy) {
float.go#L1082: func (x *Float) Int(z *Int) (*Int, Accuracy) {
float.go#L1138: func (x *Float) Rat(z *Rat) (*Rat, Accuracy) {
floatmarsh.go#L84: z.acc = Accuracy((b>>3)&3) - 1
int.go#L455: func (x *Int) Float64() (float64, Accuracy) {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |