Skip to content

Commit

Permalink
Remove docstrings for construcotrs that are being changed in a sepera…
Browse files Browse the repository at this point in the history
…te PR
  • Loading branch information
SChakravorti21 authored and anjakefala committed Oct 18, 2024
1 parent 8cd7d96 commit 3d3e1be
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions cpp/src/arrow/chunk_resolver.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,23 +75,12 @@ class ARROW_EXPORT ChunkResolver {
mutable std::atomic<int32_t> cached_chunk_;

public:
/// \brief Initialize from an `ArrayVector`.
explicit ChunkResolver(const ArrayVector& chunks) noexcept;

/// \brief Initialize from a vector of raw `Array` pointers.
explicit ChunkResolver(const std::vector<const Array*>& chunks) noexcept;

/// \brief Initialize from a `RecordBatchVector`.
///
/// Because all `Array`s in a `RecordBatch` must have the same length, this
/// can be useful for iterating over multiple columns simultaneously.
explicit ChunkResolver(const RecordBatchVector& batches) noexcept;

/// \brief Construct a ChunkResolver from a vector of chunks.size() + 1 offsets.
///
/// The first offset must be 0 and the last offset must be the logical length of the
/// chunked array. Each offset before the last represents the starting logical index of
/// the corresponding chunk.
explicit ChunkResolver(std::vector<int64_t> offsets) noexcept
: offsets_(std::move(offsets)), cached_chunk_(0) {
#ifndef NDEBUG
Expand Down

0 comments on commit 3d3e1be

Please sign in to comment.