updates + tests
This commit is contained in:
parent
1144b80a46
commit
1555902fc4
13 changed files with 207 additions and 2 deletions
|
|
@ -14,6 +14,11 @@ type BoundedValuesProvider interface {
|
|||
GetBoundedValues(index int) (x, y1, y2 float64)
|
||||
}
|
||||
|
||||
// FirstValuesProvider is a special type of value provider that can return it's (potentially computed) first value.
|
||||
type FirstValuesProvider interface {
|
||||
GetFirstValues() (x, y float64)
|
||||
}
|
||||
|
||||
// LastValuesProvider is a special type of value provider that can return it's (potentially computed) last value.
|
||||
type LastValuesProvider interface {
|
||||
GetLastValues() (x, y float64)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue