Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sesaat (0.62 sec)

  1. src/cmd/compile/internal/ir/const.go

    	f := new(big.Float)
    	f.SetPrec(ConstPrec)
    	switch u := constant.Val(v).(type) {
    	case int64:
    		f.SetInt64(u)
    	case *big.Int:
    		f.SetInt(u)
    	case *big.Float:
    		f.Set(u)
    	case *big.Rat:
    		f.SetRat(u)
    	default:
    		base.Fatalf("unexpected: %v", u)
    	}
    	return f
    }
    
    // ConstOverflow reports whether constant value v is too large
    // to represent with type t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 18:53:26 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top