benleggiero
12/29/2017, 1:12 AM>>
operator in Kotlin/JS?benleggiero
12/29/2017, 1:37 AMinline infix fun Int.rsh(rhs: Int): Int = eval("$this >> $rhs")
gildor
12/29/2017, 3:18 AMInt.shr()
?gildor
12/29/2017, 3:25 AMInt.shr()
transpiles directly to >>
benleggiero
12/31/2017, 3:55 PMx shr y
it says “Unresolved reference: shr”. x
and y
are `Byte`s.gildor
01/01/2018, 12:15 PMbenleggiero
01/03/2018, 2:38 AMUint8Array
. Additionally, I'm trying to be platform-independent, so Kotlin types matter.gildor
01/03/2018, 2:43 AM