We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce Binary object which extends BinaryFormat from https://github.com/Kotlin/kotlinx.serialization which can decode given ByteArray and encode data into it back.
Binary
BinaryFormat
ByteArray
That can be done by adding BinaryDecoder which extends Decoder and BinaryEncoded which extends Encoder.
BinaryDecoder
Decoder
BinaryEncoded
Encoder
Also this module will contain helpers to work with bits (indexing/reading bit count at given index, etc).
Also taking into account MSB/LSB formats.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Introduce
Binary
object which extendsBinaryFormat
from https://github.com/Kotlin/kotlinx.serializationwhich can decode given
ByteArray
and encode data into it back.That can be done by adding
BinaryDecoder
which extendsDecoder
andBinaryEncoded
which extendsEncoder
.Also this module will contain helpers to work with bits (indexing/reading bit count at given index, etc).
Also taking into account MSB/LSB formats.
The text was updated successfully, but these errors were encountered: