/* C */ int32_t sidl_int__array_set2(const struct sidl_int__array* array, int32_t i1, int32_t i2, int32_t value)); // C++ int32_t sidl::array<int32_t>::set(int32_t i1, int32_t i2, int32_t value); C FORTRAN 77 subroutine sidl_int__array_set2_f(array, i1, i2, value) integer*8 array integer*4 i1, i2, value ! FORTRAN 90 subroutine set(array, i1, i2, value) type(sidl_int_2d), intent(in) :: array integer (selected_int_kind(9)), intent(in) :: i1, i2, value // Java public void set(int i, int j, int value) {
This method sets the value in index (i1, i2) of a two dimensional array to value. The type of the argument value is the value type for the SIDL type being held (see table 5.2). This method must only be called for two dimensional arrays. For arrays of objects and interfaces, the array will make its own reference by calling addRef() on value, so the client retains its reference to value. For arrays of strings, the array will make a copy of the string, so the client retains ownership of the value pointer.