[#bitset_detail-operator_eq-0b] = xref:bitset_detail.adoc[bitset_detail]::operator== :relfileprefix: ../ :mrdocs: Equality operators == Synopses Declared in `<util/bitset.h>` Check if bitset a and bitset b are identical. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr bool xref:bitset_detail/operator_eq-0a.adoc[operator==]( xref:bitset_detail/IntBitSet.adoc[IntBitSet] const& a, xref:bitset_detail/IntBitSet.adoc[IntBitSet] const& b) noexcept = default; ---- [.small]#xref:bitset_detail/operator_eq-0a.adoc[_» more..._]# Test whether we are done (can only compare with IteratorEnd). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr bool xref:bitset_detail/operator_eq-05.adoc[operator==]( xref:bitset_detail/IntBitSet.adoc[Iterator] const& a, xref:bitset_detail/IntBitSet.adoc[IteratorEnd] const& end) noexcept; ---- [.small]#xref:bitset_detail/operator_eq-05.adoc[_» more..._]# Check if bitset a and bitset b are identical. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr bool xref:bitset_detail/operator_eq-0f.adoc[operator==]( xref:bitset_detail/MultiIntBitSet.adoc[MultiIntBitSet] const& a, xref:bitset_detail/MultiIntBitSet.adoc[MultiIntBitSet] const& b) noexcept = default; ---- [.small]#xref:bitset_detail/operator_eq-0f.adoc[_» more..._]# Test whether we are done (can only compare with IteratorEnd). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr bool xref:bitset_detail/operator_eq-00.adoc[operator==]( xref:bitset_detail/MultiIntBitSet.adoc[Iterator] const& a, xref:bitset_detail/MultiIntBitSet.adoc[IteratorEnd] const& end) noexcept; ---- [.small]#xref:bitset_detail/operator_eq-00.adoc[_» more..._]# == Return Value * true if a and b have the same bits set. * true when no 1 bits remain to iterate. * true when all limbs have been iterated. == Parameters [cols="1,4"] |=== | Name| Description | *a* | The left‐hand bitset. | *b* | The right‐hand bitset. | *end* | The end sentinel to compare against. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#