Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

datkt/uint64be

Repository files navigation

uint64be

Encode and decode 64 bit integers into ByteArrays and Longs

Installation

The datkt.uint64be package an be installed with NPM.

$ npm install @datkt/uint64be

Prerequisites

Usage

## Compile a program in 'main.kt' and link uint64be.klib found in `node_modules/`
$ konanc -r node_modules/@datkt -l uint64be/uint64be main.kt

where main.kt might be

import datkt.uint64be.*
fun main(args: Array<String>) {
 val enc = encode(0xdeadbeef)
 val dec = decode(env) // 0xdeadbeef == dec
}

API

encode(int: Number): ByteArray

Encodes an unsigned 64 bit integer number into a ByteArray.

decode(buffer: ByteArray, offset: Int = 0): Long

Decodes an unsigned 64 bit integer from a ByteArray into a Long.

encodingLength(): Int

Inline function to return constant length of 8 bytes

See Also

License

MIT

About

Encode and decode 64 bit integers into ByteArrays and Longs

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /