1#ifndef joedb_Blob_declared
2#define joedb_Blob_declared
16 explicit Blob(int64_t position, int64_t size)
noexcept:
26 bool is_null() const noexcept {
return position == 0 && size == 0;}
27 bool operator<(
Blob blob)
const noexcept {
return position < blob.position;}
30 int64_t
get_size() const noexcept {
return size;}
31 int64_t
get_end() const noexcept {
return position + size;}
int64_t get_position() const noexcept
int64_t get_end() const noexcept
bool operator<(Blob blob) const noexcept
bool is_null() const noexcept
int64_t get_size() const noexcept
Blob(int64_t position, int64_t size) noexcept