Carsten L
DomainObjectCollection.withType
project.run { repositories.withType(MavenArtifactRepository::class.java) { // I want to access the typed repo dostuff( this) } }
this@withType
Czar
project.run { repositories.withType<MavenArtifactRepository> { doStuffTo(this) } }
::class.java
A modern programming language that makes developers happier.