Removes the first value. hasData() must have returned true before this. hasData() must again be called after this to check for end.
| 93 | // Removes the first value. hasData() must have returned true before |
| 94 | // this. hasData() must again be called after this to check for end. |
| 95 | void pop() { |
| 96 | numbers_.pop_back(); |
| 97 | currentValid_ = false; |
| 98 | } |
| 99 | |
| 100 | bool operator<(const MergeStream& other) const final { |
| 101 | return current_.value() < |
no test coverage detected