()
| 382 | } |
| 383 | |
| 384 | func (i ComparisonOperator) String() string { |
| 385 | if i < 0 || i > ComparisonOperator(len(comparisonOpName)-1) { |
| 386 | return fmt.Sprintf("ComparisonOp(%d)", i) |
| 387 | } |
| 388 | return comparisonOpName[i] |
| 389 | } |
| 390 | |
| 391 | // Inverse returns the inverse of this comparison operator if it exists. The |
| 392 | // second return value is true if it exists, and false otherwise. |
nothing calls this directly
no test coverage detected