| 1222 | constexpr int UnionType::kInvalidChildId; |
| 1223 | |
| 1224 | UnionMode::type UnionType::mode() const { |
| 1225 | return id_ == Type::SPARSE_UNION ? UnionMode::SPARSE : UnionMode::DENSE; |
| 1226 | } |
| 1227 | |
| 1228 | UnionType::UnionType(FieldVector fields, std::vector<int8_t> type_codes, Type::type id) |
| 1229 | : NestedType(id), |
no outgoing calls