33fd82cf45
Replaces an expression of the form “for (i in list) { … }” with an
expression of the form “list.forEach { i -> … }”
5 lines
111 B
HTML
5 lines
111 B
HTML
<html>
|
|
<body>
|
|
This intention transforms a for loop expression into a function call to "forEach"
|
|
</body>
|
|
</html> |