Write lines (records) to a connected-formatted unit.
Note
There is no doctests, this being tested by means of write_file doctests.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | unit |
Logical unit. |
||
type(string), | intent(in) | :: | lines(1:) |
The lines. |
||
character(len=*), | intent(in), | optional | :: | form |
Format of unit. |
|
integer, | intent(out), | optional | :: | iostat |
IO status code. |
|
character(len=*), | intent(inout), | optional | :: | iomsg |
IO status message. |
subroutine write_lines(unit, lines, form, iostat, iomsg) !< Write lines (records) to a connected-formatted unit. !< !< @note There is no doctests, this being tested by means of [[write_file]] doctests. integer, intent(in) :: unit !< Logical unit. type(string), intent(in) :: lines(1:) !< The lines. character(len=*), intent(in), optional :: form !< Format of unit. integer, intent(out), optional :: iostat !< IO status code. character(len=*), intent(inout), optional :: iomsg !< IO status message. integer :: l !< Counter. do l=1, size(lines, dim=1) call lines(l)%write_line(unit=unit, form=form, iostat=iostat, iomsg=iomsg) enddo endsubroutine write_lines