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

Function GetUint64

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

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

(key string)

Source from the content-addressed store, hash-verified

851
852// GetUint64 returns the value associated with the key as an unsigned integer.
853func GetUint64(key string) uint64 { return v.GetUint64(key) }
854
855func (v *Viper) GetUint64(key string) uint64 {
856 return cast.ToUint64(v.Get(key))

Callers

nothing calls this directly

Calls 1

GetUint64Method · 0.80

Tested by

no test coverage detected