| 1338 | } |
| 1339 | |
| 1340 | Future<Optional<T>> peek() { return peek_impl(this); } |
| 1341 | |
| 1342 | // Pop the next item on front of queue if it is <= inclusiveMaximum or if inclusiveMaximum is not present |
| 1343 | Future<Optional<T>> pop(Optional<T> inclusiveMaximum = {}) { return headReader.readNext(inclusiveMaximum); } |