Files
kotlin-fork/idea/resources/inspectionDescriptions/ReplaceCallWithBinaryOperator.html
T

4 lines
221 B
HTML

<html><body>
This inspection reports function calls that can be replaced with binary operators, especially comparison-related.
Example: <code>2.compareTo(1) > 0</code> can be replaced by <code>2 > 1</code>.
</body></html>