import { default } from "https://deno.land/x/kafkasaur@v0.0.7/src/utils/long.ts";
Methods
Returns the sum of this and the specified Long.
Returns the bitwise AND of this Long and the specified.
Compares this Long's value with the specified's.
Returns this Long divided by the specified. The result is signed if this Long is signed or unsigned if this Long is unsigned.
Tests if this Long's value equals the specified's.
Gets the high 32 bits as a signed integer.
Gets the low 32 bits as a signed integer.
Tests if this Long's value is greater than or equal the specified's.
Tests if this Long's value is negative.
Tests if this Long's value equals zero.
Tests if this Long's value is less than the specified's.
Returns the product of this and the specified Long.
Negates this Long's value.
Returns the bitwise NOT of this Long.
Returns the bitwise OR of this Long and the specified.
Returns this Long with bits shifted to the left by the given amount.
Returns this Long with bits arithmetically shifted to the right by the given amount.
Returns this Long with bits logically shifted to the right by the given amount.
Returns the difference of this and the specified Long.
Converts the Long to a 32 bit integer, assuming it is a 32 bit integer.
Converts the Long to the nearest floating-point representation (double, 53-bit mantissa)
Converts the Long to a string written in the specified radix.
Returns the bitwise XOR of this Long and the given one.