Constructs a Condition from a functor that does not match the bool operator()() const signature.
Synopsis
Declared in <absl/synchronization/mutex.h>
template<typename T>
requires !synchronization_internal::HasConstMemberCallOperator<T>::value &&
sizeof(static_cast<bool (*)(const T&)>(&T::operator())) != 0
explicit
Condition(T const* obj);
Parameters
Name |
Description |
obj |
The functor to evaluate. |
Created with MrDocs