Reports function calls that can be replaced with binary operators, in particular comparison-related ones.

Example:

  fun test(): Boolean {
      return 2.compareTo(1) > 0 // replaceable 'compareTo()'
  }

After the quick-fix is applied:

  fun test(): Boolean {
      return 2 > 1
  }