MCPcopy
hub / github.com/apache/answer / StringToInt

Function StringToInt

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

Source from the content-addressed store, hash-verified

35}
36
37func StringToInt(str string) int {
38 num, err := strconv.Atoi(str)
39 if err != nil {
40 return 0
41 }
42 return num
43}
44
45func IntToString(data int64) string {
46 return fmt.Sprintf("%d", data)

Callers 9

SitemapPageMethod · 0.92
parseVotesMethod · 0.92
parseViewsMethod · 0.92
parseAnswersMethod · 0.92
AvatarThumbMethod · 0.92
parseResultMethod · 0.92
GetIntValueMethod · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected