|
logical | mutable |
| If true, list entries can be changed once they have been added. False by default. More...
|
|
logical | list_finished |
| Is .TRUE. if the list has finished being created, .FALSE. if not. More...
|
|
integer(intg) | number_in_list |
| The number of items currently in the list. More...
|
|
integer(intg) | data_dimension |
| The dimension of the data being stored. More...
|
|
integer(intg) | initial_size |
| The size of the list when it was initially created. More...
|
|
integer(intg) | size |
| The current size of the list. More...
|
|
integer(intg) | data_type |
| The data type of the list. More...
|
|
integer(intg) | key_dimension |
| The key dimension number i.e., the dimension index used for indexing and sorting. More...
|
|
integer(intg) | sort_order |
| The ordering to be used when sorting the list. More...
|
|
integer(intg) | sort_method |
| The sorting method to be used when sorting the list. More...
|
|
integer(intg), dimension(:), allocatable | list_intg |
| The integer data (dimension = 1) for integer lists. More...
|
|
integer(intg), dimension(:,:), allocatable | list_intg2 |
| The integer data (dimension > 1) for integer lists. More...
|
|
real(sp), dimension(:), allocatable | list_sp |
| The single precision data (dimension = 1)for single precision real lists. More...
|
|
real(sp), dimension(:,:), allocatable | list_sp2 |
| The single precision data (dimension > 1) for single precision real lists. More...
|
|
real(dp), dimension(:), allocatable | list_dp |
| The double precision data (dimension = 1)for double precision real lists. More...
|
|
real(dp), dimension(:,:), allocatable | list_dp2 |
| The double precision data (dimension > 1) for double precision real lists. More...
|
|
integer(c_int), dimension(:), allocatable | list_c_int |
| The integer data (dimension = 1) for integer lists. More...
|
|
integer(c_int), dimension(:,:), allocatable | list_c_int2 |
| The integer data (dimension > 1) for integer lists. More...
|
|
Contains information on a list.
Definition at line 113 of file types.f90.