Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertToForEachLoopIntention/description.html
T
Pradyoth Kukkapalli dbb28c571b New Intention Action: Replace a call to forEach function with for loop.
Replaces an expression of form x.forEach { … } with for (a in x) { … }.
2014-05-07 14:00:50 +04:00

5 lines
119 B
HTML

<html>
<body>
This intention converts a call to the "forEach" function into a for each loop expression.
</body>
</html>