init_int32_1D Subroutine

private pure subroutine init_int32_1D(this, grow_factor, start_size)

@brief Set up the re-sizeable array (buffer) with a given start size and grow_factor.

@details Has to be called before first use and can be called any time.

@param[in] start_size Initial size of the buffer. @param[in] grow_factor Factor about which to grow the buffer, if the capacity is not sufficient.

Type Bound

buffer_int32_1D_t

Arguments

Type IntentOptional Attributes Name
class(buffer_int32_1D_t), intent(inout) :: this
real(kind=dp), intent(in), optional :: grow_factor
integer(kind=int64), intent(in), optional :: start_size

Contents