tjb
01/04/2019, 3:27 PMAlowaniak
01/04/2019, 3:27 PMtjb
01/04/2019, 3:29 PMcleishm
01/04/2019, 6:23 PMFrancesco megna
01/05/2019, 1:02 PMFleshgrinder
05/12/2021, 4:09 PM@JvmName
does not seem to be usable. 🤔
enum class E {
// @JvmName("FOO_BAR") :(
`foo-bar`
}
The only workaround I could think of was through the addition of a companion object with `@JvmField`s where I repeat each member.user
05/12/2021, 6:08 PMPeter Ertl
05/12/2021, 8:35 PMuser
05/13/2021, 3:13 PMuser
05/13/2021, 3:15 PMuser
05/13/2021, 6:17 PMDateTimePeriod
components
✅ Parsing Instant
from a string with a UTC offset
Read more in the blog post and share your feedback https://t.co/I0YqTprxYT
TwitterGabi
05/14/2021, 2:21 AMuser
05/14/2021, 3:23 PMuser
05/14/2021, 3:40 PMPatrick Ramsey
05/15/2021, 12:13 AMinline fun <reified T: Any> assertIs(obj: Any?) {
assertTrue(obj is T)
}
Patrick Ramsey
05/15/2021, 12:16 AMPatrick Ramsey
05/15/2021, 12:16 AMPatrick Ramsey
05/15/2021, 12:16 AMPatrick Ramsey
05/15/2021, 12:17 AMmelatonina
05/15/2021, 2:49 AMmelatonina
05/15/2021, 2:57 AMmelatonina
05/15/2021, 3:02 AMelye
05/15/2021, 5:31 AMencode()
function seen in JaCoCo for Kotlin? https://stackoverflow.com/questions/67543555/what-is-encode-function-detected-in-jacoco-coverage-report-for-kolin… Thanks 🙏Ttt
05/15/2021, 12:02 PMuser
05/15/2021, 5:07 PMuser
05/16/2021, 12:30 PMli'lfluf
05/16/2021, 3:51 PMnamespace
keyword. any news about it? eta? youtrack issues?Zhelenskiy
05/16/2021, 3:53 PM@JvmInline
value class A(a: Array<Any>)
@JvmInline
value class B(b: A?)
would B be also inlined? If so, what if I replace Array<T>
with generic <T : Any>
?