$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Howard Hinnant (hinnant_at_[hidden])
Date: 2002-02-05 16:13:33
On Tuesday, February 5, 2002, at 02:55 PM, Sean Parent wrote:
> But if we build these (they aren't that difficult) - you end up with a
> set
> of containers that are higher performance, have better exception
> behavior,
> and work with auto_ types and other non-copyable types.
It is my wish that ultimately such a design could be merged into the
existing std::containers (and other containers as well for that
matter). In order for that to happen, the containers must be able to
detect at compile time if a class supports move semantics, then the
container could choose to use either move or copy semantics for things
such as insert.
-Howard