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

Function DictionaryScalar

cpp/src/arrow/scalar.h:871–875  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

869 } value;
870
871 explicit DictionaryScalar(std::shared_ptr<DataType> type);
872
873 DictionaryScalar(ValueType value, std::shared_ptr<DataType> type, bool is_valid = true)
874 : internal::PrimitiveScalarBase(std::move(type), is_valid),
875 value(std::move(value)) {}
876
877 static std::shared_ptr<DictionaryScalar> Make(std::shared_ptr<Scalar> index,
878 std::shared_ptr<Array> dict);

Callers 3

TESTFunction · 0.70
VisitMethod · 0.50
TEST_FFunction · 0.50

Calls

no outgoing calls

Tested by 2

TESTFunction · 0.56
TEST_FFunction · 0.40