You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 line
152 B

  1. package requests
  2. import "strconv"
  3. type Interger string
  4. func (i Interger) ToInt() int {
  5. a, _ := strconv.ParseInt(string(i), 10, 64)
  6. return int(a)
  7. }