Home | History | Annotate | Download | only in big

Lines Matching defs:String

5 // This file implements int-to-string conversion functions.
19 // string copy if the number is negative.
21 // Text returns the string representation of x in the given base.
24 // prefix (such as "0x") is added to the string.
25 func (x *Int) Text(base int) string {
29 return string(x.abs.itoa(x.neg, base))
32 // Append appends the string representation of x, as generated by
41 func (x *Int) String() string {
46 func writeMultiple(s fmt.State, text string, count int) {
82 fmt.Fprintf(s, "%%!%c(big.Int=%s)", ch, x.String())
173 // is 0, the string prefix determines the actual conversion base. A prefix of