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

Method Parse

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

Source from the content-addressed store, hash-verified

716 }
717
718 Result<Enum> Parse(std::string_view enum_val) const {
719 auto it = parse_map_.find(std::string(enum_val));
720 if (it == parse_map_.end()) {
721 return Status::NotImplemented("The value ", enum_val,
722 " is not an expected enum value");
723 }
724 return it->second;
725 }
726
727 std::string ImplementedOptionsAsString(
728 const std::vector<Enum>& implemented_opts) const {

Callers 5

FromProtoFunction · 0.45
ParseEnumArgFunction · 0.45
DeserializeMethod · 0.45
DeserializeMethod · 0.45
DeserializeMethod · 0.45

Calls 3

NotImplementedFunction · 0.70
findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected