Return true if s1 < s2.
(s1, s2)
| 192 | |
| 193 | |
| 194 | def vtkVariantLessThan(s1, s2): |
| 195 | """ |
| 196 | Return true if s1 < s2. |
| 197 | """ |
| 198 | return (vtkCommonCore.vtkVariant(s1) < vtkCommonCore.vtkVariant(s2)) |
| 199 | |
| 200 | |
| 201 | def vtkVariantEqual(s1, s2): |
nothing calls this directly
no test coverage detected