[#absl-Condition-GuaranteedEqual] = xref:absl.adoc[absl]::xref:absl/Condition.adoc[Condition]::GuaranteedEqual :relfileprefix: ../../ :mrdocs: Determines whether two conditions are guaranteed to evaluate equally. == Synopsis Declared in `<absl/synchronization/mutex.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool GuaranteedEqual( xref:absl/Condition.adoc[Condition] const* a, xref:absl/Condition.adoc[Condition] const* b); ---- == Return Value `true` if both are guaranteed to return the same value, `false` if they may differ. == Parameters [cols="1,4"] |=== | Name| Description | *a* | The first condition, or null for a `true` condition. | *b* | The second condition, or null for a `true` condition. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#