![]() |
(git:3a1353c)
|
Public Member Functions | |
| subroutine | cp_sll_int_create (sll, first_el, rest) |
| allocates and initializes a single linked list | |
| subroutine | cp_sll_real_create (sll, first_el, rest) |
| allocates and initializes a single linked list | |
| subroutine | cp_sll_logical_create (sll, first_el, rest) |
| allocates and initializes a single linked list | |
| subroutine | cp_sll_char_create (sll, first_el, rest) |
| allocates and initializes a single linked list | |
| subroutine | cp_sll_val_create (sll, first_el, rest) |
| allocates and initializes a single linked list | |
Definition at line 99 of file cp_linked_list_input.F.
| subroutine cp_linked_list_input::cp_create::cp_sll_int_create | ( | type(cp_sll_int_type), pointer | sll, |
| integer, intent(in), optional | first_el, | ||
| type(cp_sll_int_type), optional, pointer | rest | ||
| ) |
allocates and initializes a single linked list
| sll | the single linked list to initialize |
| first_el | the first element of this list |
| rest | the following elements (if not given: empty) |
Definition at line 412 of file cp_linked_list_input.F.
| subroutine cp_linked_list_input::cp_create::cp_sll_real_create | ( | type(cp_sll_real_type), pointer | sll, |
| real(kind=dp), intent(in), optional | first_el, | ||
| type(cp_sll_real_type), optional, pointer | rest | ||
| ) |
allocates and initializes a single linked list
| sll | the single linked list to initialize |
| first_el | the first element of this list |
| rest | the following elements (if not given: empty) |
Definition at line 436 of file cp_linked_list_input.F.
| subroutine cp_linked_list_input::cp_create::cp_sll_logical_create | ( | type(cp_sll_logical_type), pointer | sll, |
| logical, intent(in), optional | first_el, | ||
| type(cp_sll_logical_type), optional, pointer | rest | ||
| ) |
allocates and initializes a single linked list
| sll | the single linked list to initialize |
| first_el | the first element of this list |
| rest | the following elements (if not given: empty) |
Definition at line 460 of file cp_linked_list_input.F.
| subroutine cp_linked_list_input::cp_create::cp_sll_char_create | ( | type(cp_sll_char_type), pointer | sll, |
| character(len=default_string_length), intent(in), optional | first_el, | ||
| type(cp_sll_char_type), optional, pointer | rest | ||
| ) |
allocates and initializes a single linked list
| sll | the single linked list to initialize |
| first_el | the first element of this list |
| rest | the following elements (if not given: empty) |
Definition at line 484 of file cp_linked_list_input.F.
| subroutine cp_linked_list_input::cp_create::cp_sll_val_create | ( | type(cp_sll_val_type), pointer | sll, |
| type(val_type), intent(in), optional, pointer | first_el, | ||
| type(cp_sll_val_type), optional, pointer | rest | ||
| ) |
allocates and initializes a single linked list
| sll | the single linked list to initialize |
| first_el | the first element of this list |
| rest | the following elements (if not given: empty) |
Definition at line 508 of file cp_linked_list_input.F.