The concept only receives the auto
part without &&
, so int
in your case.
Note that since it's a forwarding reference, passing an lvalue would deduce the auto
to T &
, and that's what the concept would receive.
The concept only receives the auto
part without &&
, so int
in your case.
Note that since it's a forwarding reference, passing an lvalue would deduce the auto
to T &
, and that's what the concept would receive.