| 101 | } |
| 102 | |
| 103 | [[nodiscard]] auto is_full() const -> bool { return size_ == capacity_; } |
| 104 | |
| 105 | // judge if dist can be inserted into buffer |
| 106 | [[nodiscard]] auto is_full(T dist) const -> bool { return dist > top_dist(); } |
no outgoing calls
no test coverage detected