MCPcopy Create free account
hub / github.com/devfeel/dotweb / String2Int64

Function String2Int64

framework/convert/convert.go:26–28  ·  view source on GitHub ↗

String2Int64 convert string to int64

(val string)

Source from the content-addressed store, hash-verified

24
25// String2Int64 convert string to int64
26func String2Int64(val string) (int64, error) {
27 return strconv.ParseInt(val, 10, 64)
28}
29
30// Int642String convert int64 to string
31func Int642String(val int64) string {

Callers 2

Test_String2Int64_1Function · 0.85
Test_String2Int64_2Function · 0.85

Calls

no outgoing calls

Tested by 2

Test_String2Int64_1Function · 0.68
Test_String2Int64_2Function · 0.68