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

Method setChar

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

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

(long offset, char value)

Source from the content-addressed store, hash-verified

1016 * @param value <code>char</code> value to set
1017 */
1018 public void setChar(long offset, char value) {
1019 Native.setChar(this, this.peer, offset, value);
1020 }
1021
1022 /**
1023 * Set <code>value</code> at location being pointed to. This is equivalent

Callers 1

setValueMethod · 0.95

Calls 1

setCharMethod · 0.95

Tested by

no test coverage detected