1.4.2 Release #12

Merged
Infendro merged 2 commits from develop into main 2026-03-11 22:21:56 +00:00
Showing only changes of commit d3a67c622c - Show all commits

View File

@@ -41,7 +41,7 @@ fun ByteArray.andInto(
}
}
fun ByteArray.andWith(that: ByteArray, startIndex: Int = 0, endIndex: Int = size, thatStartIndex: Int) =
fun ByteArray.andWith(that: ByteArray, startIndex: Int = 0, endIndex: Int = size, thatStartIndex: Int = 0) =
andInto(that, this, startIndex, startIndex, endIndex, thatStartIndex)
fun ByteArray.andWith(that: Byte, startIndex: Int = 0, endIndex: Int = size) =
@@ -95,7 +95,7 @@ fun ByteArray.orInto(
}
}
fun ByteArray.orWith(that: ByteArray, startIndex: Int = 0, endIndex: Int = size, thatStartIndex: Int) =
fun ByteArray.orWith(that: ByteArray, startIndex: Int = 0, endIndex: Int = size, thatStartIndex: Int = 0) =
orInto(that, this, startIndex, startIndex, endIndex, thatStartIndex)
fun ByteArray.orWith(that: Byte, startIndex: Int = 0, endIndex: Int = size) =
@@ -149,7 +149,7 @@ fun ByteArray.xorInto(
}
}
fun ByteArray.xorWith(that: ByteArray, startIndex: Int = 0, endIndex: Int = size, thatStartIndex: Int) =
fun ByteArray.xorWith(that: ByteArray, startIndex: Int = 0, endIndex: Int = size, thatStartIndex: Int = 0) =
xorInto(that, this, startIndex, startIndex, endIndex, thatStartIndex)
fun ByteArray.xorWith(that: Byte, startIndex: Int = 0, endIndex: Int = size) =