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 typename itl::map< DomainT, CodomainT, Traits, Compare, Combine, Section, Alloc >::set_type & operand);

Description

Subtract a set x2 from this map. Every element of this map that has a key that is element of x2 is deleted from the map.


PrevUpHomeNext