For example in these two following codes:
JavaScript
x
File("./file1.txt").forEachLine { println(it) }
and
JavaScript
File("somefile.txt").bufferedWriter().use { out ->
history.forEach {
out.write("${it.key}, ${it.value}n")
}
}
In this code what does it
mean?
Advertisement
Answer
it variable is an implicit parameter in lambda.
One other helpful convention is that if a function literal has only one parameter, its declaration may be omitted (along with the ->), and its name will be it: