Skip to content

Instantly share code, notes, and snippets.

@cbuckowitz
Created October 11, 2019 20:05
Show Gist options
  • Save cbuckowitz/280eeb2eef5087f3e6dfadab8288346e to your computer and use it in GitHub Desktop.
Save cbuckowitz/280eeb2eef5087f3e6dfadab8288346e to your computer and use it in GitHub Desktop.
Convert Kotlin IntArray to ByteArray
val ints = intArrayOf(1,2,3)
val bytes = ints.map { it.toByte() }.toByteArray()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment