MCPcopy Index your code
hub / github.com/java-native-access/jna / getDouble

Method getDouble

src/com/sun/jna/Pointer.java:627–629  ·  view source on GitHub ↗

Indirect the native pointer as a pointer to double . This is equivalent to the expression ((jdouble )((char )Pointer + offset)) . @param offset byte offset from pointer to perform the indirection @return the double value being pointed to

(long offset)

Source from the content-addressed store, hash-verified

625 * @return the <code>double</code> value being pointed to
626 */
627 public double getDouble(long offset) {
628 return Native.getDouble(this, this.peer, offset);
629 }
630
631 /**
632 * Indirect the native pointer as a pointer to pointer. This is equivalent

Callers 2

testDataTypesMethod · 0.95
getValueMethod · 0.95

Calls 1

getDoubleMethod · 0.95

Tested by 1

testDataTypesMethod · 0.76