std::unwrap_reference,std::unwrap_ref_decay (3) Linux Manual Page
std::unwrap_reference,std::unwrap_ref_decay – std::unwrap_reference,std::unwrap_ref_decay Synopsis Defined in header<functional> template <class T> (1)(since C++ 20) struct unwrap_reference; template <class T> (2)(since C++ 20) struct unwrap_ref_decay : std::unwrap_reference<std::decay_t<T>> { }; 1) If T is std::reference_wrapper<U> for some type U, provides a member typedef type that names U&; otherwise, provides a member typedef type that names T. 2) If…
