scala.scalajs.runtime
emulate a Java-Long using three integers. taken from gwt LongLib: com.google.gwt.lang.LongLib
only used by runtime
holds values l, m, h (low, middle, high) s.t. (x.l + ((long) x.m << 22) + ((long) x.h << 44)) is equal to the original value
subtraction note: gwt implements this individually
greater or equal.
greater or equal. note: gwt implements this individually
arithmetic right shift
logical right shift
(runtimeLong: any2stringadd[RuntimeLong]).+(other)
emulate a Java-Long using three integers. taken from gwt LongLib: com.google.gwt.lang.LongLib
only used by runtime
holds values l, m, h (low, middle, high) s.t. (x.l + ((long) x.m << 22) + ((long) x.h << 44)) is equal to the original value