[#absl-Condition-2constructor-04] = xref:absl.adoc[absl]::xref:absl/Condition.adoc[Condition]::Condition :relfileprefix: ../../ :mrdocs: Constructs a `Condition` from a functor that does not match the `bool operator()() const` signature. == Synopsis Declared in `<absl/synchronization/mutex.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename T> requires !synchronization_internal::HasConstMemberCallOperator<T>::value && sizeof(static_cast<bool (*)(const T&)>(&T::operator())) != 0 explicit Condition(T const* obj); ---- == Parameters [cols="1,4"] |=== | Name| Description | *obj* | The functor to evaluate. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#