C++ Logo

std-discussion

Advanced search

Re: [P2786R13] replaceability and aliasing

From: Ell <ell_se_at_[hidden]>
Date: Sun, 16 Mar 2025 14:46:29 +0200
On 3/13/25 20:36, Giuseppe D'Angelo via Std-Discussion wrote:
> Concretely speaking, this requirement was introduced to allow
> erasure/insertion in the middle of a std::vector to use (trivial)
> relocation instead of assignment. In such a scenario both the extra
> properties I described above hold.

There's another quirk, which also doesn't affect moving stuff around in
a vector, but affects the general definitions: some types are not
replaceable, but *are* replace-relocatable. For example, an std::list
that allocates its sentinel node (list2 in the paper), whose move
constructor can throw.

You can't replace move-assignment with destruction + move-construction,
because if the constructor throws you end up with a dead list. However,
you *can* replace move-assignment + destruction (of the source) with
destruction (of the destination) + (trivial) relocation.

Received on 2025-03-16 12:46:36