8 lines
148 B
Go
8 lines
148 B
Go
|
package chart
|
||
|
|
||
|
// ValueProvider is a type that produces values.
|
||
|
type ValueProvider interface {
|
||
|
Len() int
|
||
|
GetValue(index int) (float64, float64)
|
||
|
}
|