$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Thorsten Ottosen (thorsten.ottosen_at_[hidden])
Date: 2008-01-24 10:04:29
chun ping wang skrev:
> sorry it should have been
> std::copy(A.begin(), A.end(), std::back_inserter(B.begin()));
A better alternative to std::copy() is
B.insert( B.begin(), A );
Did you have any other algorithm in mind?
-Thorsten