Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.55 KB

bitset.md

File metadata and controls

40 lines (29 loc) · 1.55 KB
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: <bitset>
<bitset>
11/04/2016
<bitset>
<bitset> header
bitset header
af30a9b9-489e-46e3-9d29-5f3ea07ae6dc

<bitset>

Defines the class template bitset and two supporting template functions for representing and manipulating fixed-size sequences of bits.

Requirements

Header: <bitset>

Namespace: std

Members

Operators

Name Description
operator& Performs a bitwise AND between two bitsets.
operator<< Inserts a text representation of the bit sequence into the standard output stream.
operator>> Inserts a text representation of the bit sequence into the standard input stream.
operator^ Performs a bitwise EXCLUSIVE-OR between two bitsets.
[`operator `](../standard-library/bitset-operators.md#op_or)

Classes

Name Description
bitset The class template describes a type of object that stores a sequence consisting of a fixed number of bits that provide a compact way of keeping flags for a set of items or conditions.

See also

Header Files Reference
Thread Safety in the C++ Standard Library