kotlinx-browser icon indicating copy to clipboard operation
kotlinx-browser copied to clipboard

Missing methods in ArrayBufferView

Open Schahen opened this issue 5 years ago • 0 comments

Following methods are missing from Uint8Array (and other ArrayBufferView implementations for that matter):

fun slice(begin: Int, end: Int): Uint8Array 
fun subarray(begin: Int, end: Int): Uint8Array 
fun reverse(): Uint8Array 

// following signature yet to figure out
fun entries(): IterableIterator<dynamic /* JsTuple<Number, Number> */>
fun keys(): IterableIterator<Number>
fun values(): IterableIterator<Number>

Schahen avatar Jul 09 '20 18:07 Schahen