free_options_all Subroutine

private elemental subroutine free_options_all(self)

Free all options of all sections.

Arguments

TypeIntentOptionalAttributesName
class(file_ini), intent(inout) :: self

File data.


Contents

Source Code


Source Code

  elemental subroutine free_options_all(self)
  !< Free all options of all sections.
  class(file_ini), intent(inout):: self !< File data.

  if (allocated(self%sections)) call self%sections%free_options
  endsubroutine free_options_all