Using corresponding functions makes your code simpler.
The quick-fix replaces the function calls with another one.
Example:
fun test(list: List<Any>) {
list.filter { it is String }
}
After the quick-fix is applied:
fun test(list: List<Any>) {
list.filterIsInstance<String>()
}