Utility Functions : List of Utility Functions : stm_list_intersect_ids_lists

stm_list_intersect_ids_lists
Function Type
stm_list
Description
Extracts elements that are common to the two specified input lists.
Note: The two lists must be both lists of stm_id's
Syntax
stm_list_intersect_ids_lists (list1, list, &status)
Arguments
Input/Output
 
Status Codes
Example
To produce the intersection list list3 from list1 and list2, use the following statements:

 

stm_list list1,list2,list3;
int status;
.
.
list3 = stm_list_intersect_ids_list (list1, list2, &status);
.
.