MCPcopy Create free account
hub / github.com/java-native-access/jna / setDouble

Method setDouble

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

Set value at location being pointed to. This is equivalent to the expression ((jdouble )((char )Pointer + offset)) = value . @param offset byte offset from pointer at which value must be set @param value double value to set

(long offset, double value)

Source from the content-addressed store, hash-verified

1085 * @param value <code>double</code> value to set
1086 */
1087 public void setDouble(long offset, double value) {
1088 Native.setDouble(this, this.peer, offset, value);
1089 }
1090
1091 /**
1092 * Set <code>value</code> at location being pointed to. This is equivalent

Callers 1

setValueMethod · 0.95

Calls 1

setDoubleMethod · 0.95

Tested by

no test coverage detected