MCPcopy Index your code
hub / github.com/apache/answer / StringToInt64

Function StringToInt64

pkg/converter/str.go:29–35  ·  view source on GitHub ↗
(str string)

Source from the content-addressed store, hash-verified

27)
28
29func StringToInt64(str string) int64 {
30 num, err := strconv.ParseInt(str, 10, 64)
31 if err != nil {
32 return 0
33 }
34 return num
35}
36
37func StringToInt(str string) int {
38 num, err := strconv.Atoi(str)

Callers 15

HandleActivityMethod · 0.92
UpdateTagMethod · 0.92
revisionAuditTagMethod · 0.92
RemoveQuestionMethod · 0.92
RecoverQuestionMethod · 0.92
RemoveAnswerMethod · 0.92
RecoverAnswerMethod · 0.92
GetDatabaseSizeMethod · 0.92
ListByGroupMethod · 0.92
ListPagedMethod · 0.92
RecoverTagMethod · 0.92

Calls

no outgoing calls

Tested by 1