/* C */ void sidl_int__array_deleteRef(struct sidl_int__array* array); // C++ void sidl::array<int32_t>::deleteRef() throw ( NullIORException ); C FORTRAN 77 subroutine sidl_int__array_deleteRef_f(array) integer*8 array ! FORTRAN 90 subroutine deleteRef(array) type(sidl_int_1d), intent(out) :: array ! type depends on dimension
This decreases the reference count by one. If this reduces the reference count to zero, the resources associated with the array are reclaimed. In C++, this method should be avoided because the C++ wrapper class manages the reference count for you.