returns a new filter that is the union of the two input filters
Definition at line 39 of file FilterOperations.h. 00040 { 00041 bool* result = new bool[size]; 00042 for(int i=0 ; i<size ; ++i) 00043 result[i] = set1[i] || set2[i]; 00044 return result; 00045 }
|