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

Method GetIntValue

internal/entity/config_entity.go:56–61  ·  view source on GitHub ↗

GetIntValue get int value

()

Source from the content-addressed store, hash-verified

54
55// GetIntValue get int value
56func (c *Config) GetIntValue() int {
57 if len(c.Value) == 0 {
58 log.Warnf("config value is empty, key: %s, value: %s", c.Key, c.Value)
59 }
60 return converter.StringToInt(c.Value)
61}
62
63// GetArrayStringValue get array string value
64func (c *Config) GetArrayStringValue() []string {

Callers 5

UserActiveMethod · 0.45
ReviewMethod · 0.45
GetMaxDailyRankMethod · 0.45
checkUserTodayRankMethod · 0.45

Calls 1

StringToIntFunction · 0.92

Tested by

no test coverage detected