| 4180 | return this->empty() ? std::string() : this->FirstValue().ToString(); |
| 4181 | } |
| 4182 | float ToFloat() const { return this->empty() ? 0.0F : this->FirstValue().ToFloat(); } |
| 4183 | double ToDouble() const { return this->empty() ? 0.0 : this->FirstValue().ToDouble(); } |
| 4184 | vtkTypeInt64 ToInt() const { return this->empty() ? 0 : this->FirstValue().ToInt(); } |
| 4185 |