MCPcopy
hub / github.com/spf13/viper / GetUint32

Function GetUint32

viper.go:846–846  ·  view source on GitHub ↗

GetUint32 returns the value associated with the key as an unsigned integer.

(key string)

Source from the content-addressed store, hash-verified

844
845// GetUint32 returns the value associated with the key as an unsigned integer.
846func GetUint32(key string) uint32 { return v.GetUint32(key) }
847
848func (v *Viper) GetUint32(key string) uint32 {
849 return cast.ToUint32(v.Get(key))

Callers

nothing calls this directly

Calls 1

GetUint32Method · 0.80

Tested by

no test coverage detected