You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sets the n-th element from this pointer, and return it (different behaviour from {@link List##set(int, Object)} which returns the old value of that element !!!).<br>
927
+
Sets the n-th element from this pointer, and return it (different behaviour from {@link List\#set(int, Object)} which returns the old value of that element !!!).<br>
928
928
This is equivalent to the C/C++ square bracket assignment syntax.<br>
@param index offset in pointed elements at which the value should be copied. Can be negative if the pointer was offset and the memory before it is valid.
946
946
@param value value to set at pointed memory location
947
947
@throws RuntimeException if called on an untyped {@code Pointer<?>} instance ({@link Pointer#getTargetType()})
948
-
@return The value that was given (not the old value as in {@link List##set(int, Object)} !!!)
948
+
@return The value that was given (not the old value as in {@link List\#set(int, Object)} !!!)
949
949
*/
950
950
publicTset(longindex, Tvalue) {
951
951
getIO("Cannot set pointed value").set(this, index, value);
0 commit comments