| 2004 | const std::vector<int>& indices() const { return indices_; } |
| 2005 | int operator[](size_t i) const { return indices_[i]; } |
| 2006 | std::vector<int>::const_iterator begin() const { return indices_.begin(); } |
| 2007 | std::vector<int>::const_iterator end() const { return indices_.end(); } |
| 2008 | |
| 2009 | /// \brief Retrieve the referenced child Field from a Schema, Field, or DataType |
no test coverage detected