Files
bytes.kt/README.md
Infendro ff0e17b5ad
All checks were successful
/ test (pull_request) Successful in 2m47s
switch to signed-first approach
It turns out signed math is more performant
2026-01-15 14:10:14 +01:00

18 lines
373 B
Markdown

# bytes-kt
`bytes-kt` is a Kotlin Multiplatform library that provides helper functions for working with `ByteArray` and `UByteArray`.
## Installation
Add the following to your `build.gradle.kts`.
```kotlin
repositories {
maven("https://git.infendro.com/api/packages/Infendro/maven")
}
commonMain.dependencies {
implementation("com.infendro:bytes:1.3.1")
}
```