[#bitset_detail-operator_minus-0c] = xref:bitset_detail.adoc[bitset_detail]::operator‐ :relfileprefix: ../ :mrdocs: Return an object with the binary AND NOT between respective bits from a and b. == Synopses Declared in `<util/bitset.h>` Return an object with the binary AND NOT between respective bits from a and b. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:bitset_detail/IntBitSet.adoc[IntBitSet] xref:bitset_detail/operator_minus-0f.adoc[operator‐]( xref:bitset_detail/IntBitSet.adoc[IntBitSet] const& a, xref:bitset_detail/IntBitSet.adoc[IntBitSet] const& b) noexcept; ---- [.small]#xref:bitset_detail/operator_minus-0f.adoc[_» more..._]# Return an object with the binary AND NOT between respective bits from a and b. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:bitset_detail/MultiIntBitSet.adoc[MultiIntBitSet] xref:bitset_detail/operator_minus-02.adoc[operator‐]( xref:bitset_detail/MultiIntBitSet.adoc[MultiIntBitSet] const& a, xref:bitset_detail/MultiIntBitSet.adoc[MultiIntBitSet] const& b) noexcept; ---- [.small]#xref:bitset_detail/operator_minus-02.adoc[_» more..._]# == Return Value The set difference a minus b. == Parameters [cols="1,4"] |=== | Name| Description | *a* | The bitset to keep bits from. | *b* | The bitset whose set bits are removed. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#