Checks whether an array is a subset of another array.
More...
Checks whether an array is a subset of another array.
Definition at line 328 of file lists.f90.
subroutine lists::list_subset_of::lists_subset_of_intg_array |
( |
integer(intg), dimension(:), intent(in) |
A, |
|
|
integer(intg), dimension(:), intent(in) |
B, |
|
|
logical, intent(out) |
SUBSET, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Finds out whether array A is a subset of array B.
- Parameters
-
[in] | a | Supposed subset (to test for) |
[in] | b | Supposed superset |
[out] | subset | On exit, TRUE if A is a subset of B |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 4829 of file lists.f90.