1.5.3.19 set

.



bool includes(i1,i1,i2,i2)
bool includes(i1,i1,i2,i2,bpred)

Search for all values from the second range in the first range and return true if found, or false



o set_difference(i1,i1,i2,i2,o)
o set_difference
(i1,i1,i2,i2,o,bpred)

in the first range but not in the second range and return the end of that output range.



o set_intersection(i1,i1,i2,i2,o)
o set_intersection
(i1,i1,i2,i2,o,bpred)

in the first range and also in the second range and return the end of that output range.



o set_union(i1,i1,i2,i2,o)
o set_union(i1,i1,i2,i2,o,bpred)

either in the first range or in the second range and return the end of that output range.





o set_symmetric_difference
(i1,i1,i2,i2,o)
o set_symmetric_difference
(i1,i1,i2,i2,o,bpred)

not common to both ranges and return the end of that output range.