
4 May
2005
4 May
'05
2:22 a.m.
"Marcin KaliciƱski" <kalita@poczta.onet.pl> wrote in message news:d53ven$q88$1@sea.gmane.org... > > struct Link > > { > > Link* prev, next; > > }; > Intrusive containers also have several other advantages: > - adding object into container does not require making copies > - one object can be in more than one intrusive container at once I would like to add that it's also possible to remove an object without knowning the container it's in, sometimes that's an advantage. Also when deleting an object it's not required to first explicitly remove it from the list, ~Link() can handle this.