[#bsl-bitset-set-0c] = xref:bsl.adoc[bsl]::xref:bsl/bitset.adoc[bitset]::set :relfileprefix: ../../ :mrdocs: `set` overloads == Synopses Declared in `<bslstl_bitset.h>` Set all bits of this bitset to 1. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/bitset.adoc[bitset<N>]& xref:bsl/bitset/set-06.adoc[set]() noexcept; ---- [.small]#xref:bsl/bitset/set-06.adoc[_» more..._]# Set the bit at the specified `pos` to 1, or to `val` if supplied. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/bitset.adoc[bitset<N>]& xref:bsl/bitset/set-04.adoc[set]( std::size_t pos, int val = true); ---- [.small]#xref:bsl/bitset/set-04.adoc[_» more..._]# == Return Value reference to this modifiable bitset == Parameters [cols="1,4"] |=== | Name| Description | *pos* | index of the bit to set | *val* | value to assign to the bit (default true) |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#