Language: Kotlin
Last update: 2017.11.02 23:50 GMT
Description: Module supporting conversions between numbers and bytes
- Int <-> Bytes
- Long <-> Bytes
- Call functions from Kotlin, example:
77.unsigned255ToByte
- Call functions from Java, example:
IntByteConverterKt.unsigned255ToByte(77);
- Int (0 - 255) <- into -> 1 byte
- Int (-127 - 127) <- into -> 1 byte
- Int (0 - 65535) <- into -> 2 bytes
- Int (-32767 - 32767) <- into -> 2 bytes
- Int (-2147483647 - 2147483647) <- into -> 4 bytes
Ad 1.
- unsigned255ToByte
- toUnsigned255Int
Ad 2.
- signed127ToByte
- toSigned127Int
Ad 3.
- unsigned65535ToBytes
- toUnsigned65535Int
Ad 4.
- signed32767ToBytes
- toSigned32767Int
Ad 5.
- intToBytes
- bytesToInt
- Long (-9223372036854775807 - 9223372036854775807L) <- into -> 8 bytes
Ad 1.
- longToBytes
- bytesToLong
Clone this repository and import module "nbnconverter" into your own project
Copyright 2017 Michał Sułek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
