Date: Thu, 6 Mar 2025 11:53:44 +0100
Well, in that case we already we can use `std::minmax({a, b-a});`
But my point is that this type of mistake is far too easy to do... A second
approach is to make minmax simply ill-formed if it is called with temporary
arguments, but that would make it harder to use.
// Robin
On Thu, Mar 6, 2025, 11:50 Sebastian Wittmeier via Std-Proposals <
std-proposals_at_[hidden]> wrote:
> A workaround could be to create a function receiving any tuple and
> returning a tuple where the reference is dropped for each element and
> copies are made.
>
>
>
> auto [min, max] = tuple_values(std::minmax(a, b - a));
>
>
>
>
>
> Perhaps there could be a syntax sugar similar to auto, auto&, auto&&,
> decltype(auto)
> --
> Std-Proposals mailing list
> Std-Proposals_at_[hidden]
> https://lists.isocpp.org/mailman/listinfo.cgi/std-proposals
>
But my point is that this type of mistake is far too easy to do... A second
approach is to make minmax simply ill-formed if it is called with temporary
arguments, but that would make it harder to use.
// Robin
On Thu, Mar 6, 2025, 11:50 Sebastian Wittmeier via Std-Proposals <
std-proposals_at_[hidden]> wrote:
> A workaround could be to create a function receiving any tuple and
> returning a tuple where the reference is dropped for each element and
> copies are made.
>
>
>
> auto [min, max] = tuple_values(std::minmax(a, b - a));
>
>
>
>
>
> Perhaps there could be a syntax sugar similar to auto, auto&, auto&&,
> decltype(auto)
> --
> Std-Proposals mailing list
> Std-Proposals_at_[hidden]
> https://lists.isocpp.org/mailman/listinfo.cgi/std-proposals
>
Received on 2025-03-06 10:53:56