Constructs a Condition from a functor that does not match the bool operator()() const signature.
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);
| Name | Description |
|---|---|
| obj | The functor to evaluate. |