jkbbwr
07/07/2017, 1:33 PMthomasnield
07/09/2017, 2:26 PMgsala
07/09/2017, 3:58 PMbufferUntilChanged
with either manual iteration or, preferably, stdlib operators? As an example:
listOf(1,1,1,2,2,5,2,2,2,1,1,1,3,3,3).bufferUntilChanged() = [[1,1,1],[2,2],[5],[2,2,2],[1,1,1],[3,3,3]]
I feel like the new `pairwise`operator from the 1.2 EAP could be useful but I can't come up with a clean way of doing thisgsala
07/09/2017, 4:48 PMkarelpeeters
07/10/2017, 8:45 AMoshai
07/10/2017, 9:34 PMPaul Woitaschek
07/12/2017, 6:49 AMelect
07/13/2017, 8:57 AMthomasnield
07/14/2017, 7:28 PMjdiaz
07/15/2017, 7:06 PMtrevjones
07/16/2017, 12:25 AMthomasnield
07/17/2017, 12:07 AMDoubleArray
now? https://stackoverflow.com/questions/27512636/two-dimensional-int-array-in-kotlinthomasnield
07/17/2017, 1:16 AMNumber
parameter instead of a more specific type like Double
or Int
, can that cause overhead with boxing? Or will the compiler try to avoid that?Ivan Osipov
07/19/2017, 2:01 PMkingsley
07/23/2017, 7:14 AMziad
07/24/2017, 1:20 PMkarelpeeters
07/28/2017, 8:51 PMrivu.chakraborty
07/29/2017, 1:47 PMdiego-gomez-olvera
08/02/2017, 4:25 PMobject `┻━┻` : Exception()
class `╯°□°)╯` {
companion object {
infix fun `︵`(e: Exception) : Nothing {
throw e
}
}
}
fun main(args: Array<String>) {
`╯°□°)╯` `︵` `┻━┻`
}
redrield
08/03/2017, 3:13 AMredrield
08/03/2017, 3:13 AMcypher121
08/04/2017, 1:12 AMdamien5314
08/04/2017, 3:21 PMkevinmost
08/06/2017, 4:10 PMtrevjones
08/08/2017, 5:09 PMAndreas Sinz
08/09/2017, 2:45 PMname: Type
notation of properties/parameters called?redrield
08/11/2017, 11:57 PMorangy
/users/{id}
as specified resource access URL, and then {id}
should be an integer, and then client requests /users/bad
, should server respond with 404 or 400?poohbar
08/14/2017, 7:32 PMcodeslubber
08/14/2017, 10:29 PM