|
◆ append()
subroutine list_abstract::append |
( |
class(list), intent(inout) |
this, |
|
|
class(*), intent(in) |
value |
|
) |
| |
|
private |
add class(*) to end of list
Definizione alla linea 151 del file list_abstract.F03.
153 end subroutine prepend
156 logical function insert(this, value, index)
157 class(list), intent(inout) :: this
160 class(link), pointer :: newLink,nextlink
162 newlink => link( value)
165 insert = this%seek( index)
166 if (.not. insert) return
|