You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In C++ 20, e.g. rxu::is_hashable<std::string> unexpectedly returns false because std::hash<T>::result_type and ::argument_type were removed (cppreference, P0619R2). See definition of is_hashable:
In C++ 20, e.g.
rxu::is_hashable<std::string>
unexpectedly returns false becausestd::hash<T>::result_type
and::argument_type
were removed (cppreference, P0619R2). See definition ofis_hashable
:RxCpp/Rx/v2/src/rxcpp/rx-util.hpp
Lines 1022 to 1028 in 761b932
This means functions like
observable<T>::distinct()
do not work anymore.The text was updated successfully, but these errors were encountered: