Add resources-en for idea
#KT-38297 Fixed
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
class Person(val name: String)
|
||||
|
||||
val persons = listOf("Jack", "Tom").map(::Person)
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
class Person(val name: String)
|
||||
|
||||
val persons = listOf("Jack", "Tom").map { Person(it) }
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
This intention converts a lambda (function literal) expression calling a single function to a function reference.
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user