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

Method GetOption

cpp/src/arrow/engine/substrait/extension_set.cc:178–185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176}
177
178std::optional<const std::vector<std::string>*> SubstraitCall::GetOption(
179 std::string_view option_name) const {
180 auto opt = options_.find(std::string(option_name));
181 if (opt == options_.end()) {
182 return std::nullopt;
183 }
184 return &opt->second;
185}
186
187void SubstraitCall::SetOption(std::string_view option_name,
188 const std::vector<std::string_view>& option_preferences) {

Callers 2

ParseOptionOrElseFunction · 0.80
DecodeBasicAggregateFunction · 0.80

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected