nish
06/24/2017, 3:55 AMSlackbot
06/24/2017, 11:03 AMerakitin
06/24/2017, 6:08 PM1.1.3
and got following error
e: /Users/erakitin/Projects/android/wakiex/domain/build/tmp/kapt3/stubs/debug/com/wakie/wakiex/domain/model/users/profile/ProfileSettings.java:95: error: ')' expected
e:
e: com.wakie.wakiex.domain.model.users.profile.DirectCallSetting directCallSetting, boolean p7_-314497661) {
e: ^
e: /Users/erakitin/Projects/android/wakiex/domain/build/tmp/kapt3/stubs/debug/com/wakie/wakiex/domain/model/users/profile/ProfileSettings.java:95: error: illegal start of type
e:
It looks like there is an issue with naming in kapt
1.1.2-5
works fine.tschuchort
06/24/2017, 6:43 PMjanvladimirmostert
06/24/2017, 7:48 PMredrield
06/25/2017, 12:57 AMshirbal
06/25/2017, 8:47 AMwouterdoeland
06/25/2017, 11:54 AMxap4o
06/25/2017, 1:47 PMgradle :frontend:run
Then get following error:
> Task :frontend:npm-install
npm ERR! code ETARGET
npm ERR! notarget No matching version found for kotlin@1.1.1
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
npm ERR! notarget
Anybody managed to get it running?diesieben07
06/25/2017, 4:12 PM<T>
, so fun <T> List<T>.moodi ...
diesieben07
06/25/2017, 8:18 PM&
becomes and
, |
becomes or
and <<
becomes shl
. Bit manipulation is highly suboptimal in Kotlin at the moment, sadly.Paul Woitaschek
06/25/2017, 8:20 PMalexreidy
06/25/2017, 9:47 PMleonardootto
06/26/2017, 2:39 AMpavlospt
06/26/2017, 9:36 AMselectedChoices.mapIndexed { index, isSelected -> if (isSelected) index else -1 }.filter { it != -1 }
. Is there a prettier way to write this ? 🙂 In short what I want to do is get the indexes from selectedChoices
, which is a BooleanArray, where the value is true
and then map those indexes in something different, hence the .filter { it != -1}
(also not sure if I am on the right channel)lupajz
06/26/2017, 9:42 AMselectedChoices.foldIndexed(mutableListOf<Int>()) { index, acc, bool ->
if(bool) {
acc.add(index)
acc
}
else acc
}
Can be ?rockerhieu
06/26/2017, 2:21 PMif (condition) a else b
?treelzebub
06/26/2017, 6:13 PMshirbal
06/26/2017, 6:50 PMmg6maciej
06/27/2017, 10:10 AMDalinar
06/27/2017, 11:15 AMikozlowski
06/27/2017, 2:33 PMcom.fasterxml.jackson.databind.JsonMappingException: Could not find creator property with name zxc
errors for entities that works without this plugin
stdlib-jre8, kotlin-reflect, 1.1.2-5
jackson-core, jackson-datatype-jsr310, jackson-module-kotlin 2.8.9
hibernate-java8 5.2.10.Final
burak.eregar
06/27/2017, 5:22 PMuser
06/27/2017, 5:58 PMdanko9
06/27/2017, 6:36 PMredrield
06/27/2017, 7:51 PMmenegatti
06/28/2017, 8:14 AMFailed to decompile X.kt. Method Y couldn't be written
rrva
06/28/2017, 1:22 PMcopy()
, what’s the cleanest way to write it? this obviously does not work: val widget = widget.copy(owner = this.copy(firstName = "alfred"))
diesieben07
06/28/2017, 2:01 PMchristophsturm
06/28/2017, 3:50 PMchristophsturm
06/28/2017, 3:50 PMCzar
06/29/2017, 5:39 AM