List of usage examples for com.google.gwt.corp.compatibility Numbers longBitsToDouble
public static final double longBitsToDouble(long l)
From source file:java.nio.DirectByteBuffer.java
License:Apache License
public final double getDouble() { return Numbers.longBitsToDouble(getLong()); }
From source file:java.nio.DirectByteBuffer.java
License:Apache License
public final double getDouble(int index) { return Numbers.longBitsToDouble(getLong(index)); }