Module

x/atlas_sdk3/mod.ts>Long.fromBits

TypeSafe MongoDB Atlas Data API SDK for Deno & Deno Deploy
Latest
method Long.fromBits
import { Long } from "https://dotland.deno.dev/x/atlas_sdk3@v0.3.1/mod.ts";

Returns a Long representing the 64 bit integer that comes by concatenating the given low and high bits. Each is assumed to use 32 bits.

Parameters

lowBits: number
  • The low 32 bits
highBits: number
  • The high 32 bits
optional
unsigned: boolean
  • Whether unsigned or not, defaults to signed

Returns

The corresponding Long value