github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/stdlibs/strconv/strconv.go (about)

     1  package strconv
     2  
     3  import "strconv"
     4  
     5  func Itoa(n int) string                                { return strconv.Itoa(n) }
     6  func AppendUint(dst []byte, i uint64, base int) []byte { return strconv.AppendUint(dst, i, base) }
     7  func Atoi(s string) (int, error)                       { return strconv.Atoi(s) }
     8  func CanBackquote(s string) bool                       { return strconv.CanBackquote(s) }
     9  func FormatInt(i int64, base int) string               { return strconv.FormatInt(i, base) }
    10  func FormatUint(i uint64, base int) string             { return strconv.FormatUint(i, base) }
    11  func Quote(s string) string                            { return strconv.Quote(s) }
    12  func QuoteToASCII(r string) string                     { return strconv.QuoteToASCII(r) }