com.jtransc.lang.DoubleInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-rt-core Show documentation
Show all versions of jtransc-rt-core Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
package com.jtransc.lang;
public class DoubleInfo {
static public final int EXPONENT_BIAS = 1023;
static public final int EXPONENT_BITS = 12;
static public final int MANTISSA_BITS = 52;
static public final int NON_MANTISSA_BITS = 12;
static public final long SIGN_MASK = 0x8000000000000000L;
static public final long EXPONENT_MASK = 0x7ff0000000000000L;
static public final long MANTISSA_MASK = 0x000fffffffffffffL;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy