10 struct RelocateFunction {
11 template<concepts::Destructible T>
12 requires(concepts::MoveConstructible<T>)
13 constexpr auto operator()(T& reference)
const -> T {
14 auto result = util::move(reference);
21constexpr inline auto relocate = detail::RelocateFunction {};
constexpr auto relocate
Definition relocate.h:21
constexpr auto destroy_at
Definition destroy_at.h:24
Definition any_storable.h:9