Files
2025-10-25 03:02:53 +03:00

10 KiB
Raw Permalink Blame History

[vector.bool]

23 Containers library [containers]

23.3 Sequence containers [sequences]

23.3.14 Specialization of vector for bool [vector.bool]

23.3.14.1 Partial class template specialization vector<bool, Allocator> [vector.bool.pspc]

1

#

To optimize space allocation, a partial specialization of vector forbool elements is provided:namespace std {templateclass vector<bool, Allocator> {public:// typesusing value_type = bool; using allocator_type = Allocator; using pointer = implementation-defined; using const_pointer = implementation-defined; using const_reference = bool; using size_type = implementation-defined; // see [container.requirements]using difference_type = implementation-defined; // see [container.requirements]using iterator = implementation-defined; // see [container.requirements]using const_iterator = implementation-defined; // see [container.requirements]using reverse_iterator = std::reverse_iterator; using const_reverse_iterator = std::reverse_iterator<const_iterator>; // bit referenceclass reference {public:constexpr reference(const reference&) = default; constexpr ~reference(); constexpr operator bool() const noexcept; constexpr reference& operator=(bool x) noexcept; constexpr reference& operator=(const reference& x) noexcept; constexpr const reference& operator=(bool x) const noexcept; constexpr void flip() noexcept; // flips the bit}; // construct/copy/destroyconstexpr vector() noexcept(noexcept(Allocator())) : vector(Allocator()) { }constexpr explicit vector(const Allocator&) noexcept; constexpr explicit vector(size_type n, const Allocator& = Allocator()); constexpr vector(size_type n, const bool& value, const Allocator& = Allocator()); templateconstexpr vector(InputIterator first, InputIterator last, const Allocator& = Allocator()); template<container-compatible-range R>constexpr vector(from_range_t, R&& rg, const Allocator& = Allocator()); constexpr vector(const vector& x); constexpr vector(vector&& x) noexcept; constexpr vector(const vector&, const type_identity_t&); constexpr vector(vector&&, const type_identity_t&); constexpr vector(initializer_list, const Allocator& = Allocator()); constexpr ~vector(); constexpr vector& operator=(const vector& x); constexpr vector& operator=(vector&& x)noexcept(allocator_traits::propagate_on_container_move_assignment::value || allocator_traits::is_always_equal::value); constexpr vector& operator=(initializer_list); templateconstexpr void assign(InputIterator first, InputIterator last); template<container-compatible-range R>constexpr void assign_range(R&& rg); constexpr void assign(size_type n, const bool& t); constexpr void assign(initializer_list); constexpr allocator_type get_allocator() const noexcept; // iteratorsconstexpr iterator begin() noexcept; constexpr const_iterator begin() const noexcept; constexpr iterator end() noexcept; constexpr const_iterator end() const noexcept; constexpr reverse_iterator rbegin() noexcept; constexpr const_reverse_iterator rbegin() const noexcept; constexpr reverse_iterator rend() noexcept; constexpr const_reverse_iterator rend() const noexcept; constexpr const_iterator cbegin() const noexcept; constexpr const_iterator cend() const noexcept; constexpr const_reverse_iterator crbegin() const noexcept; constexpr const_reverse_iterator crend() const noexcept; // capacityconstexpr bool empty() const noexcept; constexpr size_type size() const noexcept; constexpr size_type max_size() const noexcept; constexpr size_type capacity() const noexcept; constexpr void resize(size_type sz, bool c = false); constexpr void reserve(size_type n); constexpr void shrink_to_fit(); // element accessconstexpr reference operator[](size_type n); constexpr const_reference operator[](size_type n) const; constexpr reference at(size_type n); constexpr const_reference at(size_type n) const; constexpr reference front(); constexpr const_reference front() const; constexpr reference back(); constexpr const_reference back() const; // modifierstemplate<class... Args> constexpr reference emplace_back(Args&&... args); constexpr void push_back(const bool& x); template<container-compatible-range R>constexpr void append_range(R&& rg); constexpr void pop_back(); template<class... Args> constexpr iterator emplace(const_iterator position, Args&&... args); constexpr iterator insert(const_iterator position, const bool& x); constexpr iterator insert(const_iterator position, size_type n, const bool& x); templateconstexpr iterator insert(const_iterator position, InputIterator first, InputIterator last); template<container-compatible-range R>constexpr iterator insert_range(const_iterator position, R&& rg); constexpr iterator insert(const_iterator position, initializer_list il); constexpr iterator erase(const_iterator position); constexpr iterator erase(const_iterator first, const_iterator last); constexpr void swap(vector&)noexcept(allocator_traits::propagate_on_container_swap::value || allocator_traits::is_always_equal::value); static constexpr void swap(reference x, reference y) noexcept; constexpr void flip() noexcept; // flips all bitsconstexpr void clear() noexcept; };}

2

#

Unless described below, all operations have the same requirements and semantics as the primary vector template, except that operations dealing with the bool value type map to bit values in the container storage andallocator_traits::construct is not used to construct these values.

3

#

There is no requirement that the data be stored as a contiguous allocation of bool values.

A space-optimized representation of bits is recommended instead.

4

#

reference is a class that simulates the behavior of references of a single bit invector.

The conversion function returns true when the bit is set, and false otherwise.

The assignment operators set the bit when the argument is (convertible to) true and clear it otherwise.

flip reverses the state of the bit.

🔗

constexpr void flip() noexcept;

5

#

Effects: Replaces each element in the container with its complement.

🔗

static constexpr void swap(reference x, reference y) noexcept;

6

#

Effects: Exchanges the contents of x and y as if by:bool b = x; x = y; y = b;

🔗

template<class Allocator> struct hash<vector<bool, Allocator>>;

7

#

The specialization is enabled ([unord.hash]).

🔗

template<class T> constexpr bool is-vector-bool-reference = see below;

8

#

The expressionis-vector-bool-reference is true if T denotes the type vector<bool, Alloc>::reference for some type Alloc andvector<bool, Alloc> is not a program-defined specialization.

23.3.14.2 Formatter specialization for vector [vector.bool.fmt]

🔗

namespace std {template<class T, class charT>requires is-vector-bool-referencestruct formatter<T, charT> {private: formatter<bool, charT> underlying_; // exposition onlypublic:templateconstexpr typename ParseContext::iterator parse(ParseContext& ctx); templatetypename FormatContext::iterator format(const T& ref, FormatContext& ctx) const; };}

🔗

template<class ParseContext> constexpr typename ParseContext::iterator parse(ParseContext& ctx);

1

#

Equivalent to: return underlying_.parse(ctx);

🔗

template<class FormatContext> typename FormatContext::iterator format(const T& ref, FormatContext& ctx) const;

2

#

Equivalent to: return underlying_.format(ref, ctx);