noctarius
05/06/2017, 8:26 AMnoctarius
05/06/2017, 8:26 AMnoctarius
05/06/2017, 8:26 AMcoletz
05/06/2017, 10:40 AMjava.util.Locale.getDefault().getISO3Language()
is translated to kotlin as isO3Language
...I think that is not the intended behaviour since is
prefix should be used only with boolean value...Can anyone confirm that is not only a bug of mine?mg6maciej
05/06/2017, 10:42 AMcoletz
05/06/2017, 10:43 AMbernhard
05/06/2017, 10:47 AMcoletz
05/06/2017, 10:54 AMdanko9
05/06/2017, 3:38 PMdanko9
05/06/2017, 3:39 PMmiccighel
05/06/2017, 4:43 PMkioba
05/06/2017, 6:16 PMdathoang.se
05/07/2017, 8:43 AMdathoang.se
05/07/2017, 8:47 AMchris-hatton
05/07/2017, 9:39 AMchris-hatton
05/07/2017, 9:40 AMchris-hatton
05/07/2017, 9:40 AMj_kapp
05/07/2017, 10:38 AMchris-hatton
05/07/2017, 1:46 PMmoltendorf
05/07/2017, 5:21 PMdouglarek
05/08/2017, 5:04 AMval a = "abcd"
val b = "ab"
(0..(a.length)).takeWhile { a.substring(0,it) == b}.isNotEmpty() // false ?
douglarek
05/08/2017, 5:05 AMtakeWhile
Returns a list containing first elements satisfying the given [predicate]douglarek
05/08/2017, 5:13 AMtakeWhile
work well in above example?douglarek
05/08/2017, 5:21 AMdouglarek
05/08/2017, 5:27 AMbamdmux
05/08/2017, 5:32 AMdouglarek
05/08/2017, 5:33 AMdouglarek
05/08/2017, 5:35 AMbamdmux
05/08/2017, 5:45 AMfirst
bamdmux
05/08/2017, 5:46 AMfilter