by JUANDENT
How come a concept receives 2 template parameters but only one is used?
|
|
[1 reply] : There are two syntaxes involved, both of which ultimately supply the s... (by DizzyDon)
|
by LsDefect
Parameters and move semantics
|
|
[10 replies] Last: I think I've actually got a handle on this now - thank you very much! (by LsDefect)
|
by JUANDENT
why pass by universal reference?
|
|
[1 reply] : Universal references are useful when you want to move the argument if ... (by Peter87)
|
by JUANDENT
Cannot convert from T to T&
|
|
[4 replies] Last: Is there any harm in using auto&&? No, I don't think so. does f re... (by Peter87)
|
by JUANDENT
How to write a concept that requires one to create an object to specify that that constructor must exist
|
|
[no replies]
|
by JUANDENT
what are the differences between returning auto, auto&, auto&& and decltype(auto)?
|
|
[1 reply] : For auto and decltype(auto): https://stackoverflow.com/questions/2136... (by deleted account xyzzy)
|
by JamieAl
Error: Using EigenFFT in for loop
|
|
[no replies]
|
by seeplus
what #define are defined
|
|
[3 replies] Last: Thanks. I missed that one........ (by seeplus)
|
by JUANDENT
are these assignments to temporary valid?
|
|
[1 reply] : h and i return dangling references. All big compilers (GCC, Clang ... (by Peter87)
|
by JUANDENT
vector of unique_ptrs - how to initialize?
|
|
[7 replies] Last: std::initializer_list only gives const access to the elements. You c... (by Peter87)
|