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

6 lines
211 B
HTML

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