| 33 | } |
| 34 | |
| 35 | std::unique_ptr<FeatureType> FeaturesVector::GetByIndex(uint32_t index) const |
| 36 | { |
| 37 | auto const ftOffset = m_table ? m_table->GetFeatureOffset(index) : index; |
| 38 | return std::make_unique<FeatureType>(&m_loadInfo, m_recordReader->ReadRecord(ftOffset)); |
| 39 | } |
| 40 | |
| 41 | size_t FeaturesVector::GetNumFeatures() const |
| 42 | { |
no test coverage detected