C++ Logo

std-proposals

Advanced search

Re: [std-proposals] concepts in function param list

From: Peter C++ <peter.cpp_at_[hidden]>
Date: Sun, 1 May 2022 10:06:33 +0200
learn the language! available with adding the keyword auto at appropriate place.



sent from a mobile device so please excuse strange words due to autocorrection.
Peter Sommerlad
peter.cpp_at_[hidden]
+41-79-432 23 32

> On 1 May 2022, at 10:03, Abdullah Qasim via Std-Proposals <std-proposals_at_[hidden]> wrote:
>
> 
>
> Why must we do this:
>
> // concept C
> template <C ...T >
> decltype(auto) func (T ...args)
> {
> return args + ...;
> }
>
> So unnecessary!
>
> Why not:
>
> decltype(auto) func (C ...args)
> {
> Return args + ...;
> }
>
> ??
>
> Not hard to implement, as auto in param list is already implemented.
> This would help lots, & would speed up coding, making it more maintainable too!
> --
> Std-Proposals mailing list
> Std-Proposals_at_[hidden]
> https://lists.isocpp.org/mailman/listinfo.cgi/std-proposals

Received on 2022-05-01 08:06:34