fix build
All checks were successful
/ publish (push) Successful in 3m56s

This commit is contained in:
2025-11-10 13:59:55 +01:00
parent 694c44d7d5
commit f647abc0a4
3 changed files with 8 additions and 74 deletions

View File

@@ -74,7 +74,7 @@ fun UByteArray.toIntArray(
return toList()
.chunked(4)
.map { it.toInt(order) }
.map { it.toUByteArray().toInt(order) }
.toIntArray()
}
@@ -96,7 +96,7 @@ fun UByteArray.toLongArray(
return toList()
.chunked(8)
.map { it.toLong(order) }
.map { it.toUByteArray().toLong(order) }
.toLongArray()
}
@@ -118,7 +118,7 @@ fun UByteArray.toUIntArray(
return toList()
.chunked(4)
.map { it.toUInt(order) }
.map { it.toUByteArray().toUInt(order) }
.toUIntArray()
}
@@ -140,6 +140,6 @@ fun UByteArray.toULongArray(
return toList()
.chunked(8)
.map { it.toULong(order) }
.map { it.toUByteArray().toULong(order) }
.toULongArray()
}