| 14 | ) |
| 15 | |
| 16 | type combineXYs struct{ xs, ys plotter.Valuer } |
| 17 | |
| 18 | func (c combineXYs) Len() int { return c.xs.Len() } |
| 19 | func (c combineXYs) XY(i int) (float64, float64) { return c.xs.Value(i), c.ys.Value(i) } |
nothing calls this directly
no outgoing calls
no test coverage detected