changing a type into a reference
to a type, allows one to access the members of the type without creating an instance of the type. This seems to be true for both lvalue references
and rvalue references
.
declval
is implemented with add_rvalue_reference
instead of add_lvalue_reference
,
- is this just a convention,
- or are there examples of use where
add_rvalue_reference
is preferable?
Edit:
I suppose I was slightly vague, these answers are all very good but touch on slightly different points. There are two different answers to use proposed, Howard emphasized that you can choose which reference your type has, making add_rvalue_reference
more flexible. The other answers emphasize that the default behavior automatically chooses references which reflect the input type more naturally. I don't know what to pick! If somebody could add two simple examples, motivating the need for each property respectively, then I'll be satisfied.