I found this article: <https://blog.jetbrains.com/...
# announcements
j
I found this article: https://blog.jetbrains.com/kotlin/2011/10/dsls-in-kotlin-part-1-whats-in-the-toolbox-builders/ And it shows the following code snippet:
Copy code
users
   .filter { it hasPrivilege WRITE }
   .map { it => it.fullName }
   .orderBy { lastName }