Minor: sort modifiers of ImmutableBlob members

This commit is contained in:
Ilya Gorbunov
2018-11-21 18:37:39 +03:00
committed by Nikolay Igotti
parent 65db34ad0d
commit ee42edc9a5
@@ -17,10 +17,10 @@ public final class ImmutableBlob private constructor() {
// Data layout is the same as for ByteArray, so we can share native functions.
@SymbolName("Kotlin_ByteArray_get")
external public operator fun get(index: Int): Byte
public external operator fun get(index: Int): Byte
@SymbolName("Kotlin_ByteArray_getArrayLength")
external private fun getArrayLength(): Int
private external fun getArrayLength(): Int
/** Creates an iterator over the elements of the array. */
public operator fun iterator(): ByteIterator {