Temporary access to a value. This view becomes invalid on the next modifying operation.
| 379 | /// |
| 380 | /// This view becomes invalid on the next modifying operation. |
| 381 | std::string_view GetView(int64_t i) const { |
| 382 | offset_type value_length; |
| 383 | const uint8_t* value_data = GetValue(i, &value_length); |
| 384 | return std::string_view(reinterpret_cast<const char*>(value_data), value_length); |
| 385 | } |
| 386 | |
| 387 | // Cannot make this a static attribute because of linking issues |
| 388 | static constexpr int64_t memory_limit() { |
nothing calls this directly
no test coverage detected