|
integer(i4b) function | ifind_character (array, str) |
| Find the 1st array element containing str, or -1 if not found. More...
|
|
integer(i4b) function | ifind_integer (iarray, ival) |
| Find the first element containing ival, or -1 if not found. More...
|
|
integer(i4b) function | ifind_charstring (array, str) |
| Find the 1st array element containing str, or -1 if not found. More...
|
|
Definition at line 44 of file ArrayHandlers.f90.
◆ ifind_character()
integer(i4b) function arrayhandlersmodule::ifind::ifind_character |
( |
character(len=*), dimension(:) |
array, |
|
|
character(len=*) |
str |
|
) |
| |
|
private |
Definition at line 473 of file ArrayHandlers.f90.
475 integer(I4B) :: ifind_character
477 character(len=*),
dimension(:) :: array
478 character(len=*) :: str
483 findloop:
do i = 1,
size(array)
484 if (array(i) == str)
then
◆ ifind_charstring()
Definition at line 493 of file ArrayHandlers.f90.
496 integer(I4B) :: ifind_charstring
498 type(CharacterStringType),
dimension(:) :: array
499 type(CharacterStringType) :: str
503 ifind_charstring = -1
504 findloop:
do i = 1,
size(array)
505 if (array(i) == str)
then
◆ ifind_integer()
integer(i4b) function arrayhandlersmodule::ifind::ifind_integer |
( |
integer(i4b), dimension(:) |
iarray, |
|
|
integer(i4b) |
ival |
|
) |
| |
|
private |
Definition at line 513 of file ArrayHandlers.f90.
515 integer(I4B) :: ifind_integer
517 integer(I4B),
dimension(:) :: iarray
523 findloop:
do i = 1,
size(iarray)
524 if (iarray(i) == ival)
then
The documentation for this interface was generated from the following file: