commonMain.ru.casperix.math.array.int8.ByteCodec.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of math Show documentation
Show all versions of math Show documentation
Simple set of geometric and other types
package ru.casperix.math.array.int8
interface ByteCodec {
fun decode(bytes: ByteArray): Custom
fun encode(custom: Custom): ByteArray
}