| 66 | } |
| 67 | |
| 68 | vtkIdType LookupValue(ValueType elem) |
| 69 | { |
| 70 | this->UpdateLookup(); |
| 71 | auto indices = FindIndexVec(elem); |
| 72 | if (indices == nullptr) |
| 73 | { |
| 74 | return -1; |
| 75 | } |
| 76 | return indices->front(); |
| 77 | } |
| 78 | |
| 79 | void LookupValue(ValueType elem, vtkIdList* ids) |
| 80 | { |
nothing calls this directly
no test coverage detected