Last active
January 2, 2016 13:29
-
-
Save capoferro/8310391 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
138 for _, i := range items.([]interface{}) { | |
139 x, _ := strconv.ParseInt(string(i.([]uint8)), 0, 0) | |
140 | |
141 ints = append(ints, int(x)) | |
142 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment