C++ Logo

std-proposals

Advanced search

Re: [std-proposals] std::construct<T>

From: Gašper Ažman <gasper.azman_at_[hidden]>
Date: Sun, 1 Dec 2024 19:31:43 +0000
The only reason to standardize this would be if somehow this function was
magically blessed to perfectly forward constructor arguments to the
constructor, including non-movable pr-values:

MyType(pin<int>)

is not constructible using std:construct without special language support.

On Sun, Dec 1, 2024 at 7:28 PM Andrey Semashev via Std-Proposals <
std-proposals_at_[hidden]> wrote:

> On December 1, 2024 9:43:24 PM Avi Kivity <avi_at_[hidden]> wrote:
>
> > On Sun, 2024-12-01 at 21:25 +0300, Andrey Semashev wrote:
> >> On December 1, 2024 7:57:45 PM Avi Kivity <avi_at_[hidden]> wrote:
> >>
> >>> On Sun, 2024-12-01 at 19:11 +0300, Andrey Semashev via Std-
> >>> Proposals
> >>> wrote:
> >>
> >>> Or we can make it a
> >>> niebloid.
> >>
> >> Sorry, I don't know what this means.
> >
> >
> > A technique used in std::ranges to avoid such pointers-to-functions.
> >
> > template <typename T>
> > struct _Impl_construct
> > template <typename... Args>
> > static T operator()(Args... args) { return
> > T(std::forward<Args>(args)...); }
> > };
> >
> > template <typename T>
> > inline _Impl_construct construct;
>
> This would make taking address of std::construct not work, which is
> unexpected.
>
> std::ranges::transform(&std::construct<T>)
>
>
>
>
> --
> Std-Proposals mailing list
> Std-Proposals_at_[hidden]
> https://lists.isocpp.org/mailman/listinfo.cgi/std-proposals
>

Received on 2024-12-01 19:31:58