std::vector (3) Linux Manual Page
std::vector<bool> – std::vector<bool>
Synopsis
Defined in header <vector>
template<class Allocator>
class vector<bool, Allocator>;
std::vector<bool> is a possibly space-efficient specialization of std::vector for the type bool.
The manner in which std::vector<bool> is made space efficient (as well as whether it is optimized at all) is implementation defined. One potential optimization involves coalescing vector elements such that each element occupies a single bit instead of sizeof(bool) bytes.
std::vector<bool> behaves similarly to std::vector, but in order to be space efficient, it:
* Does not necessarily store its elements as a contiguous array (so &v[0] + n != &v[n])
* Exposes class std::vector<bool>::reference as a method of accessing individual bits. In particular, objects of this class are returned by operator[] by value.
* Does not use std::allocator_traits::construct to construct bit values.
* Does not guarantee that different elements in the same container can be modified concurrently by different threads.
Member types
Member type Definition
value_type bool
allocator_type Allocator
size_type implementation-defined
difference_type implementation-defined
reference (class)
const_reference bool
pointer implementation-defined
const_pointer implementation-defined
iterator implementation-defined
const_iterator implementation-defined
reverse_iterator std::reverse_iterator<iterator>
const_reverse_iterator std::reverse_iterator<const_iterator>
Member functions
constructor (public member function of std::vector<T,Allocator>)
destructor (public member function of std::vector<T,Allocator>)
operator= (public member function of std::vector<T,Allocator>)
assign (public member function of std::vector<T,Allocator>)
get_allocator (public member function of std::vector<T,Allocator>)
Element access
at (public member function of std::vector<T,Allocator>)
operator[] (public member function of std::vector<T,Allocator>)
front (public member function of std::vector<T,Allocator>)
back (public member function of std::vector<T,Allocator>)
Iterators
begin returns an iterator to the beginning
cbegin (public member function of std::vector<T,Allocator>)
end_ returns an iterator to the end
cend (public member function of std::vector<T,Allocator>)
rbegin returns a reverse iterator to the beginning
crbegin (public member function of std::vector<T,Allocator>)
rend returns a reverse iterator to the end
crend (public member function of std::vector<T,Allocator>)
Capacity
empty (public member function of std::vector<T,Allocator>)
size (public member function of std::vector<T,Allocator>)
max_size (public member function of std::vector<T,Allocator>)
reserve (public member function of std::vector<T,Allocator>)
capacity (public member function of std::vector<T,Allocator>)
Modifiers
clear (public member function of std::vector<T,Allocator>)
insert (public member function of std::vector<T,Allocator>)
emplace constructs element in-place
(C++14)
erase (public member function of std::vector<T,Allocator>)
push_back (public member function of std::vector<T,Allocator>)
emplace_back constructs elements in-place at the end
(C++14)
pop_back (public member function of std::vector<T,Allocator>)
resize (public member function of std::vector<T,Allocator>)
swap (public member function of std::vector<T,Allocator>)
vector<bool> specific modifiers
flip (public member function)
swap swaps two std::vector<bool>::references
[static]
Non-member functions
operator==
operator!= lexicographically compares the values in the vector
operator< (function template)
operator<=
operator>
operator>=
std::swap(std::vector) (function template)
Helper classes
std::hash<std::vector<bool>> hash support for std::vector<bool>
(C++11)
Notes
If the size of the bitset is known at compile time, std::bitset may be used, which offers a richer set of member functions. In addition, boost::dynamic_bitset exists as an alternative to std::vector<bool>.
Since its representation may by optimized, std::vector<bool> does not necessarily meet all Container or SequenceContainer requirements. For example, because std::vector<bool>::iterator is implementation-defined, it may not satisfy the LegacyForwardIterator requirement. Use of algorithms such as std::search that require LegacyForwardIterators may result in either_compile-time_or_run-time_errors.
The Boost.Container_version_of_vector does not specialize for bool.
