()
| 531 | // SeriesSet contains a set of series. |
| 532 | type SeriesSet interface { |
| 533 | Next() bool |
| 534 | // At returns full series. Returned series should be iterable even after Next is called. |
| 535 | At() Series |
| 536 | // Err returns the error that iteration has failed with. |
no outgoing calls