
16 Jan
2011
16 Jan
'11
11:17 a.m.
On 15/01/2011 19:58, Robert Ramey wrote:
Certain names like join, zip, map, copy, etc. ... apear in multiple libraries. I would like to use "using namespace boost" but then I'm afraid that using something like copy will be ambigiuos
boost::copy is a range-based version of std::copy. It's not ambiguous because it doesn't have the same arity. Anyway, it's probably not a good idea to do "using namespace boost", just like you shouldn't do "using namespace std"...