| 363 | } |
| 364 | |
| 365 | std::string valueText(AttribValue indexValue) const { return getGroupValueMap()->lookupString(indexValue._id); } |
| 366 | std::string valueText(Optional<AttribValue> indexValue) const { |
| 367 | return (indexValue.present()) ? valueText(AttribValue(indexValue.get()._id)) : "<undefined>"; |
| 368 | } |
no test coverage detected