@{ * Evaluates the expression for each element in the values and extracts the range. * The order matches the order of the selection nodes. If not expression is set or * if it's an empty string, then an expression that simply combines all selection * nodes in an binary-or is assumed. */
| 190 | * nodes in an binary-or is assumed. |
| 191 | */ |
| 192 | vtkSmartPointer<vtkSignedCharArray> Evaluate( |
| 193 | vtkSignedCharArray* const* values, unsigned int num_values) const |
| 194 | { |
| 195 | std::array<signed char, 2> range; |
| 196 | return this->Evaluate(values, num_values, range); |
| 197 | } |
| 198 | vtkSmartPointer<vtkSignedCharArray> Evaluate(vtkSignedCharArray* const* values, |
| 199 | unsigned int num_values, std::array<signed char, 2>& range) const; |
| 200 | ///@} |
no test coverage detected