math/big.Int.Int64 (method)

8 uses

	math/big (current package)
		int.go#L429: func (x *Int) Int64() int64 {

	crypto/rsa
		rsa.go#L297: 		e64 := E.Int64()

	github.com/jackc/pgx/v5/pgtype
		numeric.go#L127: 	return Int8{Int64: bi.Int64(), Valid: true}, nil
		numeric.go#L454: 		wholeDigits = append(wholeDigits, int16(remainder.Int64()))
		numeric.go#L460: 			fracDigits = append(fracDigits, int16(remainder.Int64()))
		numeric.go#L751: 	return scanner.ScanInt64(Int8{Int64: bigInt.Int64(), Valid: true})

	go/constant
		value.go#L289: 		return int64Val(x.Int64())
		value.go#L512: 		return x.val.Int64(), false // not an int64Val and thus not exact