| 229 | } |
| 230 | |
| 231 | std::vector<double> TableLookup_Impl::outputValues() const { |
| 232 | std::vector<double> result; |
| 233 | for (const auto& eg : extensibleGroups()) { |
| 234 | auto _d = eg.getDouble(OS_Table_LookupExtensibleFields::OutputValue); |
| 235 | OS_ASSERT(_d); |
| 236 | result.push_back(_d.get()); |
| 237 | } |
| 238 | return result; |
| 239 | } |
| 240 | |
| 241 | unsigned TableLookup_Impl::numberofOutputValues() const { |
| 242 | return numExtensibleGroups(); |