$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Thorsten Ottosen (thorsten.ottosen_at_[hidden])
Date: 2006-06-07 10:00:21
Konstantin Litvinenko wrote:
> iterator i = a1.insert("a", 3);
> iterator r = a2.transfer(i, a1); /// Will not work
> return r;
>
> How can I do this with current interface in a simple way?
A hack could be
iterator r = a2.insert( "a", a1.release(i).release() );
-Thorsten