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

Function MakeBuilderExactIndex

cpp/src/arrow/array/builder_base.h:345–350  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

343 std::unique_ptr<ArrayBuilder>* out);
344
345inline Result<std::unique_ptr<ArrayBuilder>> MakeBuilderExactIndex(
346 const std::shared_ptr<DataType>& type, MemoryPool* pool = default_memory_pool()) {
347 std::unique_ptr<ArrayBuilder> out;
348 ARROW_RETURN_NOT_OK(MakeBuilderExactIndex(pool, type, &out));
349 return out;
350}
351
352/// \brief Construct an empty DictionaryBuilder initialized optionally
353/// with a preexisting dictionary

Callers 5

AssertAppendScalarFunction · 0.70
ExecVarWidthCoalesceImplFunction · 0.50
ExecMethod · 0.50

Calls 1

default_memory_poolFunction · 0.85

Tested by 1

AssertAppendScalarFunction · 0.56