Reports scope functions (let, run, apply, also) that can be converted between each other.

Using corresponding functions makes your code simpler.

The quick-fix replaces the scope function to another one.

Example:


  val x = "".let {
      it.length
  }

After the quick-fix is applied:


  val x = "".run {
      length
  }