|
◆ delete()
logical function list_abstract::delete |
( |
class(list), intent(inout) |
this, |
|
|
integer, optional |
index |
|
) |
| |
|
private |
delete values from list return .true.
if succes
Definizione alla linea 358 del file list_abstract.F03.
358 this%currLink => prevlink 360 if ( associated(this%firstLink)) then 361 this%index=max(this%index-1,1) 366 end subroutine deleteitem 370 abstract class to use lists in fortran 2003.
|