NAME set_intersect - place intersection of two sets in a third SYNOPSIS subroutine set_intersect (set1, set2, destination) pointer set1, set2, destination DESCRIPTION 'Set_intersect' determines the intersection of the sets given as its first two arguments and places that intersection in the set specified by the third. For proper operation, all three sets should be equal in size. All set manipulation routines make use of dynamic storage, which must be initialized before use. See 'dsinit' for further information. Note that all set manipulation routines have long names. To avoid unique name conflicts with other routines, any Ratfor program using the set routines should include the following statement: include "=src=/lcl/lib/swtmlb.u/swtmlb_link.r.i" IMPLEMENTATION Does a word-by-word logical 'and' of the bit vectors for the first two sets, placing the result in the third. BUGS Should be fixed to work with sets of differing lengths. SEE ALSO other set routines ('set_?*') (4)