Sdílet prostřednictvím


vector<bool>::flip

Obrátí všechny bity v vector<bool>.

void flip();

Příklad

// vector_bool_flip.cpp
// compile with: /EHsc /W4
#include <vector>
#include <iostream>

int main()
{
    using namespace std;
    cout << boolalpha; // format output for subsequent code

    vector<bool> vb = { true, false, false, true, true };
    cout << "The vector is:" << endl << "    ";
    for (const auto& b : vb) {
        cout << b << " ";
    }
    cout << endl;

    vb.flip();

    cout << "The flipped vector is:" << endl << "    ";
    for (const auto& b : vb) {
        cout << b << " ";
    }
    cout << endl;
}

Výstup

The vector is:
    true false false true true
The flipped vector is:
    false true true false false

Požadavky

Hlavička: <vector>

Obor názvů: std

Viz také

Referenční dokumentace

vector – třída

Standardní knihovna šablon