iterable 값을 사용하지 않는 forEach 루프를 보고합니다.

예:


  listOf(1, 2, 3).forEach { }

빠른 수정에서는 forEach 섹션에 익명 매개변수를 삽입합니다.


  listOf(1, 2, 3).forEach { _ -> }