Can the same object be “rvalue-used” twice consecutively?
Summary The question revolves around whether an object can be rvalue-used twice consecutively without compromising its state or the safety of the program. Specifically, it focuses on the use of std::get with an rvalue reference to the same tuple in a context involving perfect forwarding. The general perception is that once an object is moved-from, … Read more