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)
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |