MCPcopy Create free account
hub / github.com/apache/arrow / TypedChunkLocation

Function TypedChunkLocation

cpp/src/arrow/chunk_resolver.h:50–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48 TypedChunkLocation() = default;
49
50 TypedChunkLocation(IndexType chunk_index, IndexType index_in_chunk)
51 : chunk_index(chunk_index), index_in_chunk(index_in_chunk) {
52 static_assert(sizeof(TypedChunkLocation<IndexType>) == 2 * sizeof(IndexType));
53 static_assert(alignof(TypedChunkLocation<IndexType>) == alignof(IndexType));
54 }
55
56 bool operator==(TypedChunkLocation other) const {
57 return chunk_index == other.chunk_index && index_in_chunk == other.index_in_chunk;

Callers 1

chunk_resolver.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected