()
| 454 | } |
| 455 | |
| 456 | func (i ComparisonOperator) String() string { |
| 457 | if i < 0 || i > ComparisonOperator(len(comparisonOpName)-1) { |
| 458 | return fmt.Sprintf("ComparisonOp(%d)", i) |
| 459 | } |
| 460 | return comparisonOpName[i] |
| 461 | } |
| 462 | |
| 463 | // Inverse returns the inverse of this comparison operator if it exists. The |
| 464 | // second return value is true if it exists, and false otherwise. |
nothing calls this directly
no test coverage detected