My code has a couple instances where functions react only slightly differently when encountering a T&& or const T&, however the functions themselves are quite long (note that T is just some object type). For instance:
void push_back(const T& newt){
/* code block X */
new (ptr) T(newt);
/* code block Y */
}
void push_back(T&& newt){
/* code block X */
new (ptr) T(std::move(newt));
/* code block Y */
}
is it possible to write something along the lines of this pseudo-code:
template<typename S>
void push_back(S newt){
/* code block X */
#if decltype(newt)==T&&
new (ptr) T(std::move(newt));
#else
new (ptr) T(newt);
#endif
/* code block Y */
}
Or is there a better way to write nearly identical move and copy functions?