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

Method is_nested

cpp/src/parquet/types.cc:847–851  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

845}
846bool LogicalType::is_invalid() const { return !is_valid(); }
847bool LogicalType::is_nested() const {
848 return impl_->type() == LogicalType::Type::LIST ||
849 impl_->type() == LogicalType::Type::MAP ||
850 impl_->type() == LogicalType::Type::VARIANT;
851}
852bool LogicalType::is_nonnested() const { return !is_nested(); }
853bool LogicalType::is_serialized() const { return impl_->is_serialized(); }
854

Callers 4

test_is_nested_or_structFunction · 0.45
PrimitiveNodeMethod · 0.45
GroupNodeMethod · 0.45

Calls 1

typeMethod · 0.45

Tested by 2

test_is_nested_or_structFunction · 0.36