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)
| 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 |