MCPcopy Create free account
hub / github.com/SeeFlowerX/stackplz / StrToNum64

Function StrToNum64

user/util/helper.go:36–42  ·  view source on GitHub ↗
(text string)

Source from the content-addressed store, hash-verified

34}
35
36func StrToNum64(text string) uint64 {
37 value, err := strconv.ParseUint(text, 0, 64)
38 if err != nil {
39 panic(err)
40 }
41 return value
42}
43
44func IntToBytes(n int) []byte {
45 x := uint32(n)

Callers 2

Parse_HookPointMethod · 0.92
AddFilterMethod · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected