| 281 | |
| 282 | const string& name() const { return name_; } |
| 283 | int num_components() const { return value_component_types_.size(); } |
| 284 | DataType component_type(int i) const { |
| 285 | CHECK_GE(i, 0); |
| 286 | CHECK_LT(static_cast<size_t>(i), value_component_types_.size()); |