MCPcopy Create free account
hub / github.com/kataras/iris / strParseInt64

Function strParseInt64

context/strconv.go:90–97  ·  view source on GitHub ↗
(value string)

Source from the content-addressed store, hash-verified

88}
89
90func 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
99func strParseFloat32(value string) (float32, error) {
100 result, err := strconv.ParseFloat(value, 32)

Callers 1

PostValueInt64Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…