type golang.org/x/net/internal/timeseries.Float

11 uses

	golang.org/x/net/internal/timeseries (current package)
		timeseries.go#L46: type Float float64
		timeseries.go#L50: 	f := Float(0)
		timeseries.go#L55: func (f *Float) String() string { return fmt.Sprintf("%g", f.Value()) }
		timeseries.go#L58: func (f *Float) Value() float64 { return float64(*f) }
		timeseries.go#L60: func (f *Float) Multiply(ratio float64) { *f *= Float(ratio) }
		timeseries.go#L62: func (f *Float) Add(other Observable) {
		timeseries.go#L63: 	o := other.(*Float)
		timeseries.go#L67: func (f *Float) Clear() { *f = 0 }
		timeseries.go#L69: func (f *Float) CopyFrom(other Observable) {
		timeseries.go#L70: 	o := other.(*Float)