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

Method setFloat

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

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

(long offset, float value)

Source from the content-addressed store, hash-verified

1072 * @param value <code>float</code> value to set
1073 */
1074 public void setFloat(long offset, float value) {
1075 Native.setFloat(this, this.peer, offset, value);
1076 }
1077
1078 /**
1079 * Set <code>value</code> at location being pointed to. This is equivalent

Callers 1

setValueMethod · 0.95

Calls 1

setFloatMethod · 0.95

Tested by

no test coverage detected