Lines Matching refs:interface
5 // Package expvar provides a standardized interface to public variables, such
40 type Var interface {
47 // Int is a 64-bit integer variable that satisfies the Var interface.
68 // Float is a 64-bit float variable that satisfies the Var interface.
100 // Map is a string-to-Var map variable that satisfies the Var interface.
133 v.m.Range(func(k, _ interface{}) bool {
156 // before LoadOrStore: LoadOrStore causes the key interface to escape even on
214 // String is a string variable, and satisfies the Var interface.
224 // String implements the Val interface. To get the unquoted string
238 type Func func() interface{}
240 func (f Func) Value() interface{} {
336 func cmdline() interface{} {
340 func memstats() interface{} {