An open API service indexing awesome lists of open source software.

https://github.com/sail-sail/long

A Long class for representing a 64 bit two's-complement integer value derived from the Closure Library for stand-alone use and extended with unsigned support.
https://github.com/sail-sail/long

Last synced: 4 months ago
JSON representation

A Long class for representing a 64 bit two's-complement integer value derived from the Closure Library for stand-alone use and extended with unsigned support.

Awesome Lists containing this project

README

          

# long

A Long class for representing a 64 bit two's-complement integer value derived from the Closure Library for stand-alone use and extended with unsigned support.

## usage
```ts
import { assert, assertEquals } from "https://deno.land/std@0.139.0/testing/asserts.ts";
import Long from "https://deno.land/x/long@v1.0.0/mod.ts";

Deno.test("long", function() {
const value = new Long(0xFFFFFFFF, 0x7FFFFFFF);
assertEquals(value.toString(), "9223372036854775807");
});

Deno.test("isLong", function() {
const value = new Long(0xFFFFFFFF, 0x7FFFFFFF);
assert(Long.isLong(value));
});
```