(value string)
| 88 | } |
| 89 | |
| 90 | func strParseInt64(value string) (int64, error) { |
| 91 | result, err := strconv.ParseInt(value, 10, 64) |
| 92 | if err != nil { |
| 93 | return 0, err |
| 94 | } |
| 95 | |
| 96 | return result, nil |
| 97 | } |
| 98 | |
| 99 | func strParseFloat32(value string) (float32, error) { |
| 100 | result, err := strconv.ParseFloat(value, 32) |
no outgoing calls
no test coverage detected
searching dependent graphs…