| 885 | constexpr size_type total_read() const noexcept { return values_read_ + null_read_; } |
| 886 | |
| 887 | constexpr bool is_fully_null() const noexcept { return values_remaining() == 0; } |
| 888 | |
| 889 | constexpr bool is_done() const noexcept { return total_remaining() == 0; } |
| 890 |