wineluis
06/10/2017, 2:45 PMe.lislebo
06/11/2017, 1:15 PMiex
06/11/2017, 1:21 PMjdiaz
06/11/2017, 8:30 PMliminal
06/11/2017, 10:48 PMliminal
06/11/2017, 10:52 PMiex
06/12/2017, 7:49 AMmyanmarking
06/12/2017, 11:41 AMreturn this.sortedWith(
compareBy(
{ it.isFriendOnline },
{ it.presenceMode },
{ it.gameStatus },
{ it.name }
)
)
amorenew
06/12/2017, 12:41 PMmugur
06/12/2017, 1:57 PMjordan_k_miles
06/12/2017, 3:21 PMxenomachina
06/12/2017, 4:38 PMmkodekar
06/13/2017, 6:00 AMmikehearn
06/13/2017, 9:16 AMarkadiy
06/13/2017, 10:16 AMinterface Foo { int bar(); }
why do I need an explicit labeled return in Kotlin when using SAM conversion when creating a property - instance of this interface:
val foo = Foo { return@Foo 5}
why cannot I just write:
val foo = Foo { return 5 }
I know that I can just write it as val foo = Foo { 5 }
, but I wonder why I need the labeled return in the second examplemenegatti
06/13/2017, 10:56 AM@JvmField
czyzby
06/13/2017, 5:04 PMUnresolved reference: onEach
after updating to 1.1.2-4
. The code compiles and runs fine on 1.1.2-3
. Is that a known issue?vpriscan
06/13/2017, 5:31 PMamorenew
06/13/2017, 5:59 PMamorenew
06/13/2017, 6:14 PMwasyl
06/13/2017, 6:16 PMjw
06/13/2017, 6:23 PMwasyl
06/13/2017, 6:27 PMvaskir
06/13/2017, 6:36 PMvaskir
06/13/2017, 6:52 PMkrtko
06/13/2017, 7:15 PMkevinmost
06/13/2017, 7:29 PMorangy
06/13/2017, 10:32 PMferoz_baig
06/14/2017, 3:21 AMoblakr24
06/14/2017, 8:29 AMoblakr24
06/14/2017, 8:29 AMmiha-x64
06/14/2017, 8:36 AM@JvmSynthetic
oblakr24
06/14/2017, 8:38 AM