MFIX  2016-1
list Module Reference

Data Types

type  list_t
 

Functions/Subroutines

subroutine list_init (this)
 
subroutine list_add (this, value)
 
integer function list_pop (this)
 
subroutine list_del (this, value)
 
integer function list_get (this, index)
 
integer function list_get_length (this)
 

Function/Subroutine Documentation

subroutine list::list_add ( type(list_t), intent(inout)  this,
integer, intent(in)  value 
)

Definition at line 48 of file list.f.

Here is the call graph for this function:

subroutine list::list_del ( type(list_t), intent(inout)  this,
integer, intent(in)  value 
)

Definition at line 106 of file list.f.

integer function list::list_get ( type(list_t), intent(in)  this,
integer  index 
)

Definition at line 132 of file list.f.

integer function list::list_get_length ( type(list_t), intent(in)  this)

Definition at line 149 of file list.f.

subroutine list::list_init ( type(list_t), intent(inout)  this)

Definition at line 30 of file list.f.

Here is the caller graph for this function:

integer function list::list_pop ( type(list_t), intent(inout)  this)

Definition at line 82 of file list.f.