Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(column), | intent(inout) | :: | this | |||
integer, | intent(in) | :: | i | |||
integer(kind=ik), | intent(in) | :: | val |
subroutine change_col_integer(this, i, val) class(column), intent(inout) :: this integer, intent(in) :: i integer(ik), intent(in) :: val if (this % dtype /= INTEGER_NUM) error stop 'column is not of type integer' this % icol(i) = val end subroutine change_col_integer