| 389 | } |
| 390 | |
| 391 | std::span<const std::byte> CDBIterator::GetKeyImpl() const |
| 392 | { |
| 393 | // The returned span borrows from the current iterator entry and is only |
| 394 | // valid until the iterator is advanced. |
| 395 | return MakeByteSpan(m_impl_iter->iter->key()); |
| 396 | } |
| 397 | |
| 398 | std::span<const std::byte> CDBIterator::GetValueImpl() const |
| 399 | { |
nothing calls this directly
no test coverage detected