All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.xx2bab.polyfill.arsc.io.ByteBufferExtension.kt Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
package me.xx2bab.polyfill.arsc.io

import java.nio.ByteBuffer
import java.nio.ByteOrder

fun ByteBuffer.takeLittleEndianOrder() {
    order(ByteOrder.LITTLE_ENDIAN)
    clear()
}

fun ByteBuffer.flipToArray(): ByteArray {
    flip()
    return array()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy