XYer wraps the Len and XY methods.
| 112 | |
| 113 | // XYer wraps the Len and XY methods. |
| 114 | type XYer interface { |
| 115 | // Len returns the number of x, y pairs. |
| 116 | Len() int |
| 117 | |
| 118 | // XY returns an x, y pair. |
| 119 | XY(int) (x, y float64) |
| 120 | } |
| 121 | |
| 122 | // XYRange returns the minimum and maximum |
| 123 | // x and y values. |
no outgoing calls
no test coverage detected