vyacheslav.gerasimov
08/08/2018, 12:40 PMblakelee
08/30/2018, 12:06 AMfun s(value: Boolean?) {
val x: Boolean = value ?: return
// Do stuff
}
jw
08/30/2018, 3:56 AMNikky
08/30/2018, 2:02 PMvyacheslav.gerasimov
09/05/2018, 7:42 PM1.2.70-eap-40
is out! Feel free to provide any feedback and report issues to kotl.in/issuepokkeli
09/13/2018, 5:54 AMpokkeli
09/13/2018, 6:06 AMjw
09/20/2018, 6:18 PMjw
09/20/2018, 6:24 PMchristophsturm
09/23/2018, 10:58 AMorangy
christophsturm
09/23/2018, 11:00 AMorangy
christophsturm
09/23/2018, 11:09 AMchristophsturm
09/23/2018, 11:09 AMudalov
1.3.0-rc-116
and it's available in the kotlin-eap
Bintray repository and "EAP 1.3" IDE plugin channel.
What's new: https://github.com/JetBrains/kotlin/releases/v1.3-rc2Paul Woitaschek
09/28/2018, 5:04 PMCoroutines make Android's D8 angry
digitalsanctum
09/28/2018, 9:17 PMjvm
plugin version 1.3.0-rc-116 work? I'm getting 404jw
09/28/2018, 9:21 PMdigitalsanctum
09/28/2018, 9:21 PMmaven(url = "<https://dl.bintray.com/kotlin/kotlin-eap>")
jw
09/28/2018, 9:24 PMdigitalsanctum
09/28/2018, 9:25 PMbuildscript {
repositories {
maven("<https://dl.bintray.com/kotlin/kotlin-eap>")
jcenter()
mavenCentral()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.0-rc-116")
}
}
repositories {
maven("<https://dl.bintray.com/kotlin/kotlin-eap>")
jcenter()
mavenCentral()
}
digitalsanctum
09/28/2018, 9:27 PMdigitalsanctum
09/28/2018, 9:27 PMplugins {
id("org.jetbrains.kotlin.jvm") version "1.2.71"
id("com.github.johnrengelman.shadow") version "2.0.4"
}
apply {
plugin("kotlin")
plugin("com.github.johnrengelman.shadow")
}
digitalsanctum
09/28/2018, 9:28 PMdigitalsanctum
09/28/2018, 9:32 PMdigitalsanctum
09/28/2018, 9:34 PMudalov
1.3.0-rc-146
and it's available in the kotlin-eap
Bintray repository and "EAP 1.3" IDE plugin channel.
What's new: https://github.com/JetBrains/kotlin/releases/v1.3-rc3pabl0rg
10/04/2018, 2:50 PMfun String?.myCheck(): Boolean {
contract {
returns(true) implies(this@myCheck is String)
}
return true
}