|
◆ display()
subroutine list_abstract::display |
( |
class(list), intent(inout) |
this | ) |
|
|
private |
Print the list.
Definizione alla linea 133 del file list_abstract.F03.
134 subroutine prepend(this, value)
135 class(list), intent(inout) :: this
137 class(link), pointer :: newLink
139 newlink => link( value)
140 this%currLink => newlink
|