Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template operator^=

boost::itl::operator^=

Synopsis

template<class DomainT , class CodomainT , class Traits , ITL_COMPARE Compare, 
         ITL_COMBINE Combine, ITL_SECTION Section, ITL_ALLOC Alloc> 
  itl::map< DomainT, CodomainT, Traits, Compare, Combine, Section, Alloc > & 
  operator^=(itl::map< DomainT, CodomainT, Traits, Compare, Combine, Section, Alloc > & object, 
             const itl::map< DomainT, CodomainT, Traits, Compare, Combine, Section, Alloc > & operand);

Description

Symmetric subtract map x2 and *this. So *this becomes the symmetric difference of *this and x2


PrevUpHomeNext