60 namespace std _GLIBCXX_VISIBILITY(default)
62 _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
64 template<
typename _Tp,
typename _Alloc>
69 if (__n > this->max_size())
70 __throw_length_error(__N(
"vector::reserve"));
71 if (this->capacity() < __n)
73 const size_type __old_size =
size();
74 pointer __tmp = _M_allocate_and_copy(__n,
75 _GLIBCXX_MAKE_MOVE_IF_NOEXCEPT_ITERATOR(this->_M_impl._M_start),
76 _GLIBCXX_MAKE_MOVE_IF_NOEXCEPT_ITERATOR(this->_M_impl._M_finish));
77 std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish,
78 _M_get_Tp_allocator());
79 _M_deallocate(this->_M_impl._M_start,
80 this->_M_impl._M_end_of_storage
81 - this->_M_impl._M_start);
82 this->_M_impl._M_start = __tmp;
83 this->_M_impl._M_finish = __tmp + __old_size;
84 this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __n;
88 #ifdef __GXX_EXPERIMENTAL_CXX0X__
89 template<
typename _Tp,
typename _Alloc>
90 template<
typename... _Args>
95 if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage)
97 _Alloc_traits::construct(this->_M_impl, this->_M_impl._M_finish,
98 std::forward<_Args>(__args)...);
99 ++this->_M_impl._M_finish;
102 _M_emplace_back_aux(std::forward<_Args>(__args)...);
106 template<
typename _Tp,
typename _Alloc>
107 typename vector<_Tp, _Alloc>::iterator
109 insert(iterator __position,
const value_type& __x)
111 const size_type __n = __position -
begin();
112 if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage
113 && __position ==
end())
115 _Alloc_traits::construct(this->_M_impl, this->_M_impl._M_finish, __x);
116 ++this->_M_impl._M_finish;
120 #ifdef __GXX_EXPERIMENTAL_CXX0X__
121 if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage)
124 _M_insert_aux(__position, std::move(__x_copy));
128 _M_insert_aux(__position, __x);
130 return iterator(this->_M_impl._M_start + __n);
133 template<
typename _Tp,
typename _Alloc>
134 typename vector<_Tp, _Alloc>::iterator
138 if (__position + 1 !=
end())
139 _GLIBCXX_MOVE3(__position + 1,
end(), __position);
140 --this->_M_impl._M_finish;
141 _Alloc_traits::destroy(this->_M_impl, this->_M_impl._M_finish);
145 template<
typename _Tp,
typename _Alloc>
146 typename vector<_Tp, _Alloc>::iterator
148 erase(iterator __first, iterator __last)
150 if (__first != __last)
153 _GLIBCXX_MOVE3(__last,
end(), __first);
154 _M_erase_at_end(__first.base() + (
end() - __last));
159 template<
typename _Tp,
typename _Alloc>
166 #ifdef __GXX_EXPERIMENTAL_CXX0X__
167 if (_Alloc_traits::_S_propagate_on_copy_assign())
169 if (!_Alloc_traits::_S_always_equal()
170 && _M_get_Tp_allocator() != __x._M_get_Tp_allocator())
174 _M_deallocate(this->_M_impl._M_start,
175 this->_M_impl._M_end_of_storage
176 - this->_M_impl._M_start);
177 this->_M_impl._M_start =
nullptr;
178 this->_M_impl._M_finish =
nullptr;
179 this->_M_impl._M_end_of_storage =
nullptr;
181 std::__alloc_on_copy(_M_get_Tp_allocator(),
182 __x._M_get_Tp_allocator());
185 const size_type __xlen = __x.
size();
186 if (__xlen > capacity())
188 pointer __tmp = _M_allocate_and_copy(__xlen, __x.
begin(),
190 std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish,
191 _M_get_Tp_allocator());
192 _M_deallocate(this->_M_impl._M_start,
193 this->_M_impl._M_end_of_storage
194 - this->_M_impl._M_start);
195 this->_M_impl._M_start = __tmp;
196 this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __xlen;
198 else if (
size() >= __xlen)
201 end(), _M_get_Tp_allocator());
205 std::copy(__x._M_impl._M_start, __x._M_impl._M_start +
size(),
206 this->_M_impl._M_start);
207 std::__uninitialized_copy_a(__x._M_impl._M_start +
size(),
208 __x._M_impl._M_finish,
209 this->_M_impl._M_finish,
210 _M_get_Tp_allocator());
212 this->_M_impl._M_finish = this->_M_impl._M_start + __xlen;
217 template<
typename _Tp,
typename _Alloc>
222 if (__n > capacity())
224 vector __tmp(__n, __val, _M_get_Tp_allocator());
227 else if (__n >
size())
230 std::__uninitialized_fill_n_a(this->_M_impl._M_finish,
232 _M_get_Tp_allocator());
233 this->_M_impl._M_finish += __n -
size();
236 _M_erase_at_end(std::fill_n(this->_M_impl._M_start, __n, __val));
239 template<
typename _Tp,
typename _Alloc>
240 template<
typename _InputIterator>
242 vector<_Tp, _Alloc>::
243 _M_assign_aux(_InputIterator __first, _InputIterator __last,
246 pointer __cur(this->_M_impl._M_start);
247 for (; __first != __last && __cur != this->_M_impl._M_finish;
250 if (__first == __last)
251 _M_erase_at_end(__cur);
253 insert(
end(), __first, __last);
256 template<
typename _Tp,
typename _Alloc>
257 template<
typename _ForwardIterator>
259 vector<_Tp, _Alloc>::
260 _M_assign_aux(_ForwardIterator __first, _ForwardIterator __last,
265 if (__len > capacity())
267 pointer __tmp(_M_allocate_and_copy(__len, __first, __last));
268 std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish,
269 _M_get_Tp_allocator());
270 _M_deallocate(this->_M_impl._M_start,
271 this->_M_impl._M_end_of_storage
272 - this->_M_impl._M_start);
273 this->_M_impl._M_start = __tmp;
274 this->_M_impl._M_finish = this->_M_impl._M_start + __len;
275 this->_M_impl._M_end_of_storage = this->_M_impl._M_finish;
277 else if (
size() >= __len)
278 _M_erase_at_end(std::copy(__first, __last, this->_M_impl._M_start));
281 _ForwardIterator __mid = __first;
283 std::copy(__first, __mid, this->_M_impl._M_start);
284 this->_M_impl._M_finish =
285 std::__uninitialized_copy_a(__mid, __last,
286 this->_M_impl._M_finish,
287 _M_get_Tp_allocator());
291 #ifdef __GXX_EXPERIMENTAL_CXX0X__
292 template<
typename _Tp,
typename _Alloc>
293 template<
typename... _Args>
294 typename vector<_Tp, _Alloc>::iterator
296 emplace(iterator __position, _Args&&... __args)
298 const size_type __n = __position -
begin();
299 if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage
300 && __position ==
end())
302 _Alloc_traits::construct(this->_M_impl, this->_M_impl._M_finish,
303 std::forward<_Args>(__args)...);
304 ++this->_M_impl._M_finish;
307 _M_insert_aux(__position, std::forward<_Args>(__args)...);
308 return iterator(this->_M_impl._M_start + __n);
311 template<
typename _Tp,
typename _Alloc>
312 template<
typename... _Args>
314 vector<_Tp, _Alloc>::
315 _M_insert_aux(iterator __position, _Args&&... __args)
317 template<
typename _Tp,
typename _Alloc>
319 vector<_Tp, _Alloc>::
320 _M_insert_aux(iterator __position,
const _Tp& __x)
323 if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage)
325 _Alloc_traits::construct(this->_M_impl, this->_M_impl._M_finish,
326 _GLIBCXX_MOVE(*(this->_M_impl._M_finish
328 ++this->_M_impl._M_finish;
329 #ifndef __GXX_EXPERIMENTAL_CXX0X__
332 _GLIBCXX_MOVE_BACKWARD3(__position.base(),
333 this->_M_impl._M_finish - 2,
334 this->_M_impl._M_finish - 1);
335 #ifndef __GXX_EXPERIMENTAL_CXX0X__
336 *__position = __x_copy;
338 *__position = _Tp(std::forward<_Args>(__args)...);
343 const size_type __len =
344 _M_check_len(size_type(1),
"vector::_M_insert_aux");
345 const size_type __elems_before = __position -
begin();
346 pointer __new_start(this->_M_allocate(__len));
347 pointer __new_finish(__new_start);
354 _Alloc_traits::construct(this->_M_impl,
355 __new_start + __elems_before,
356 #ifdef __GXX_EXPERIMENTAL_CXX0X__
357 std::forward<_Args>(__args)...);
364 = std::__uninitialized_move_if_noexcept_a
365 (this->_M_impl._M_start, __position.base(),
366 __new_start, _M_get_Tp_allocator());
371 = std::__uninitialized_move_if_noexcept_a
372 (__position.base(), this->_M_impl._M_finish,
373 __new_finish, _M_get_Tp_allocator());
378 _Alloc_traits::destroy(this->_M_impl,
379 __new_start + __elems_before);
381 std::_Destroy(__new_start, __new_finish, _M_get_Tp_allocator());
382 _M_deallocate(__new_start, __len);
383 __throw_exception_again;
385 std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish,
386 _M_get_Tp_allocator());
387 _M_deallocate(this->_M_impl._M_start,
388 this->_M_impl._M_end_of_storage
389 - this->_M_impl._M_start);
390 this->_M_impl._M_start = __new_start;
391 this->_M_impl._M_finish = __new_finish;
392 this->_M_impl._M_end_of_storage = __new_start + __len;
396 #ifdef __GXX_EXPERIMENTAL_CXX0X__
397 template<
typename _Tp,
typename _Alloc>
398 template<
typename... _Args>
400 vector<_Tp, _Alloc>::
401 _M_emplace_back_aux(_Args&&... __args)
403 const size_type __len =
404 _M_check_len(size_type(1),
"vector::_M_emplace_back_aux");
405 pointer __new_start(this->_M_allocate(__len));
406 pointer __new_finish(__new_start);
409 _Alloc_traits::construct(this->_M_impl, __new_start +
size(),
410 std::forward<_Args>(__args)...);
414 = std::__uninitialized_move_if_noexcept_a
415 (this->_M_impl._M_start, this->_M_impl._M_finish,
416 __new_start, _M_get_Tp_allocator());
423 _Alloc_traits::destroy(this->_M_impl, __new_start +
size());
425 std::_Destroy(__new_start, __new_finish, _M_get_Tp_allocator());
426 _M_deallocate(__new_start, __len);
427 __throw_exception_again;
429 std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish,
430 _M_get_Tp_allocator());
431 _M_deallocate(this->_M_impl._M_start,
432 this->_M_impl._M_end_of_storage
433 - this->_M_impl._M_start);
434 this->_M_impl._M_start = __new_start;
435 this->_M_impl._M_finish = __new_finish;
436 this->_M_impl._M_end_of_storage = __new_start + __len;
440 template<
typename _Tp,
typename _Alloc>
442 vector<_Tp, _Alloc>::
443 _M_fill_insert(iterator __position, size_type __n,
const value_type& __x)
447 if (size_type(this->_M_impl._M_end_of_storage
448 - this->_M_impl._M_finish) >= __n)
450 value_type __x_copy = __x;
451 const size_type __elems_after =
end() - __position;
452 pointer __old_finish(this->_M_impl._M_finish);
453 if (__elems_after > __n)
455 std::__uninitialized_move_a(this->_M_impl._M_finish - __n,
456 this->_M_impl._M_finish,
457 this->_M_impl._M_finish,
458 _M_get_Tp_allocator());
459 this->_M_impl._M_finish += __n;
460 _GLIBCXX_MOVE_BACKWARD3(__position.base(),
461 __old_finish - __n, __old_finish);
462 std::fill(__position.base(), __position.base() + __n,
467 std::__uninitialized_fill_n_a(this->_M_impl._M_finish,
470 _M_get_Tp_allocator());
471 this->_M_impl._M_finish += __n - __elems_after;
472 std::__uninitialized_move_a(__position.base(), __old_finish,
473 this->_M_impl._M_finish,
474 _M_get_Tp_allocator());
475 this->_M_impl._M_finish += __elems_after;
476 std::fill(__position.base(), __old_finish, __x_copy);
481 const size_type __len =
482 _M_check_len(__n,
"vector::_M_fill_insert");
483 const size_type __elems_before = __position -
begin();
484 pointer __new_start(this->_M_allocate(__len));
485 pointer __new_finish(__new_start);
489 std::__uninitialized_fill_n_a(__new_start + __elems_before,
491 _M_get_Tp_allocator());
495 = std::__uninitialized_move_if_noexcept_a
496 (this->_M_impl._M_start, __position.base(),
497 __new_start, _M_get_Tp_allocator());
502 = std::__uninitialized_move_if_noexcept_a
503 (__position.base(), this->_M_impl._M_finish,
504 __new_finish, _M_get_Tp_allocator());
510 __new_start + __elems_before + __n,
511 _M_get_Tp_allocator());
514 _M_get_Tp_allocator());
515 _M_deallocate(__new_start, __len);
516 __throw_exception_again;
518 std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish,
519 _M_get_Tp_allocator());
520 _M_deallocate(this->_M_impl._M_start,
521 this->_M_impl._M_end_of_storage
522 - this->_M_impl._M_start);
523 this->_M_impl._M_start = __new_start;
524 this->_M_impl._M_finish = __new_finish;
525 this->_M_impl._M_end_of_storage = __new_start + __len;
530 #ifdef __GXX_EXPERIMENTAL_CXX0X__
531 template<
typename _Tp,
typename _Alloc>
533 vector<_Tp, _Alloc>::
534 _M_default_append(size_type __n)
538 if (size_type(this->_M_impl._M_end_of_storage
539 - this->_M_impl._M_finish) >= __n)
541 std::__uninitialized_default_n_a(this->_M_impl._M_finish,
542 __n, _M_get_Tp_allocator());
543 this->_M_impl._M_finish += __n;
547 const size_type __len =
548 _M_check_len(__n,
"vector::_M_default_append");
549 const size_type __old_size = this->
size();
550 pointer __new_start(this->_M_allocate(__len));
551 pointer __new_finish(__new_start);
555 = std::__uninitialized_move_if_noexcept_a
556 (this->_M_impl._M_start, this->_M_impl._M_finish,
557 __new_start, _M_get_Tp_allocator());
558 std::__uninitialized_default_n_a(__new_finish, __n,
559 _M_get_Tp_allocator());
565 _M_get_Tp_allocator());
566 _M_deallocate(__new_start, __len);
567 __throw_exception_again;
569 std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish,
570 _M_get_Tp_allocator());
571 _M_deallocate(this->_M_impl._M_start,
572 this->_M_impl._M_end_of_storage
573 - this->_M_impl._M_start);
574 this->_M_impl._M_start = __new_start;
575 this->_M_impl._M_finish = __new_finish;
576 this->_M_impl._M_end_of_storage = __new_start + __len;
581 template<
typename _Tp,
typename _Alloc>
583 vector<_Tp, _Alloc>::
586 if (capacity() ==
size())
588 return std::__shrink_to_fit_aux<vector>::_S_do_it(*
this);
592 template<
typename _Tp,
typename _Alloc>
593 template<
typename _InputIterator>
595 vector<_Tp, _Alloc>::
596 _M_range_insert(iterator __pos, _InputIterator __first,
599 for (; __first != __last; ++__first)
601 __pos = insert(__pos, *__first);
606 template<
typename _Tp,
typename _Alloc>
607 template<
typename _ForwardIterator>
609 vector<_Tp, _Alloc>::
610 _M_range_insert(iterator __position, _ForwardIterator __first,
613 if (__first != __last)
616 if (size_type(this->_M_impl._M_end_of_storage
617 - this->_M_impl._M_finish) >= __n)
619 const size_type __elems_after =
end() - __position;
620 pointer __old_finish(this->_M_impl._M_finish);
621 if (__elems_after > __n)
623 std::__uninitialized_move_a(this->_M_impl._M_finish - __n,
624 this->_M_impl._M_finish,
625 this->_M_impl._M_finish,
626 _M_get_Tp_allocator());
627 this->_M_impl._M_finish += __n;
628 _GLIBCXX_MOVE_BACKWARD3(__position.base(),
629 __old_finish - __n, __old_finish);
630 std::copy(__first, __last, __position);
634 _ForwardIterator __mid = __first;
636 std::__uninitialized_copy_a(__mid, __last,
637 this->_M_impl._M_finish,
638 _M_get_Tp_allocator());
639 this->_M_impl._M_finish += __n - __elems_after;
640 std::__uninitialized_move_a(__position.base(),
642 this->_M_impl._M_finish,
643 _M_get_Tp_allocator());
644 this->_M_impl._M_finish += __elems_after;
645 std::copy(__first, __mid, __position);
650 const size_type __len =
651 _M_check_len(__n,
"vector::_M_range_insert");
652 pointer __new_start(this->_M_allocate(__len));
653 pointer __new_finish(__new_start);
657 = std::__uninitialized_move_if_noexcept_a
658 (this->_M_impl._M_start, __position.base(),
659 __new_start, _M_get_Tp_allocator());
661 = std::__uninitialized_copy_a(__first, __last,
663 _M_get_Tp_allocator());
665 = std::__uninitialized_move_if_noexcept_a
666 (__position.base(), this->_M_impl._M_finish,
667 __new_finish, _M_get_Tp_allocator());
672 _M_get_Tp_allocator());
673 _M_deallocate(__new_start, __len);
674 __throw_exception_again;
676 std::_Destroy(this->_M_impl._M_start, this->_M_impl._M_finish,
677 _M_get_Tp_allocator());
678 _M_deallocate(this->_M_impl._M_start,
679 this->_M_impl._M_end_of_storage
680 - this->_M_impl._M_start);
681 this->_M_impl._M_start = __new_start;
682 this->_M_impl._M_finish = __new_finish;
683 this->_M_impl._M_end_of_storage = __new_start + __len;
690 template<
typename _Alloc>
692 vector<bool, _Alloc>::
693 _M_reallocate(size_type __n)
695 _Bit_type* __q = this->_M_allocate(__n);
696 this->_M_impl._M_finish = _M_copy_aligned(
begin(),
end(),
698 this->_M_deallocate();
699 this->_M_impl._M_start = iterator(__q, 0);
700 this->_M_impl._M_end_of_storage = __q + _S_nword(__n);
703 template<
typename _Alloc>
705 vector<bool, _Alloc>::
706 _M_fill_insert(iterator __position, size_type __n,
bool __x)
712 std::copy_backward(__position,
end(),
713 this->_M_impl._M_finish + difference_type(__n));
714 std::fill(__position, __position + difference_type(__n), __x);
715 this->_M_impl._M_finish += difference_type(__n);
719 const size_type __len =
720 _M_check_len(__n,
"vector<bool>::_M_fill_insert");
721 _Bit_type * __q = this->_M_allocate(__len);
722 iterator __i = _M_copy_aligned(
begin(), __position,
724 std::fill(__i, __i + difference_type(__n), __x);
725 this->_M_impl._M_finish = std::copy(__position,
end(),
726 __i + difference_type(__n));
727 this->_M_deallocate();
728 this->_M_impl._M_end_of_storage = __q + _S_nword(__len);
729 this->_M_impl._M_start = iterator(__q, 0);
733 template<
typename _Alloc>
734 template<
typename _ForwardIterator>
736 vector<bool, _Alloc>::
737 _M_insert_range(iterator __position, _ForwardIterator __first,
740 if (__first != __last)
745 std::copy_backward(__position,
end(),
746 this->_M_impl._M_finish
747 + difference_type(__n));
748 std::copy(__first, __last, __position);
749 this->_M_impl._M_finish += difference_type(__n);
753 const size_type __len =
754 _M_check_len(__n,
"vector<bool>::_M_insert_range");
755 _Bit_type * __q = this->_M_allocate(__len);
756 iterator __i = _M_copy_aligned(
begin(), __position,
758 __i = std::copy(__first, __last, __i);
759 this->_M_impl._M_finish = std::copy(__position,
end(), __i);
760 this->_M_deallocate();
761 this->_M_impl._M_end_of_storage = __q + _S_nword(__len);
762 this->_M_impl._M_start = iterator(__q, 0);
767 template<
typename _Alloc>
769 vector<bool, _Alloc>::
770 _M_insert_aux(iterator __position,
bool __x)
772 if (this->_M_impl._M_finish._M_p != this->_M_impl._M_end_of_storage)
774 std::copy_backward(__position, this->_M_impl._M_finish,
775 this->_M_impl._M_finish + 1);
777 ++this->_M_impl._M_finish;
781 const size_type __len =
782 _M_check_len(size_type(1),
"vector<bool>::_M_insert_aux");
783 _Bit_type * __q = this->_M_allocate(__len);
784 iterator __i = _M_copy_aligned(
begin(), __position,
787 this->_M_impl._M_finish = std::copy(__position,
end(), __i);
788 this->_M_deallocate();
789 this->_M_impl._M_end_of_storage = __q + _S_nword(__len);
790 this->_M_impl._M_start = iterator(__q, 0);
794 #ifdef __GXX_EXPERIMENTAL_CXX0X__
795 template<
typename _Alloc>
797 vector<bool, _Alloc>::
804 _M_reallocate(
size());
812 _GLIBCXX_END_NAMESPACE_CONTAINER
815 #ifdef __GXX_EXPERIMENTAL_CXX0X__
817 namespace std _GLIBCXX_VISIBILITY(default)
819 _GLIBCXX_BEGIN_NAMESPACE_VERSION
821 template<
typename _Alloc>
823 hash<_GLIBCXX_STD_C::vector<bool, _Alloc>>::
824 operator()(
const _GLIBCXX_STD_C::vector<bool, _Alloc>& __b)
const noexcept
827 using _GLIBCXX_STD_C::_S_word_bit;
828 using _GLIBCXX_STD_C::_Bit_type;
830 const size_t __words = __b.size() / _S_word_bit;
833 const size_t __clength = __words *
sizeof(_Bit_type);
834 __hash = std::_Hash_impl::hash(__b._M_impl._M_start._M_p, __clength);
837 const size_t __extrabits = __b.size() % _S_word_bit;
840 _Bit_type __hiword = *__b._M_impl._M_finish._M_p;
841 __hiword &= ~((~static_cast<_Bit_type>(0)) << __extrabits);
843 const size_t __clength
844 = (__extrabits + __CHAR_BIT__ - 1) / __CHAR_BIT__;
846 __hash = std::_Hash_impl::hash(&__hiword, __clength, __hash);
848 __hash = std::_Hash_impl::hash(&__hiword, __clength);
854 _GLIBCXX_END_NAMESPACE_VERSION
857 #endif // __GXX_EXPERIMENTAL_CXX0X__
size_type capacity() const _GLIBCXX_NOEXCEPT
void _Destroy(_Tp *__pointer)
vector & operator=(const vector &__x)
Vector assignment operator.
iterator end() _GLIBCXX_NOEXCEPT
void reserve(size_type __n)
Attempt to preallocate enough memory for specified number of elements.
iterator erase(iterator __position)
Remove element at given position.
size_type size() const _GLIBCXX_NOEXCEPT
constexpr const _Tp * end(initializer_list< _Tp > __ils) noexcept
Return an iterator pointing to one past the last element of the initilizer_list.
iterator_traits< _InputIterator >::difference_type distance(_InputIterator __first, _InputIterator __last)
A generalization of pointer arithmetic.
iterator emplace(iterator __position, _Args &&...__args)
Inserts an object in vector before specified iterator.
iterator begin() _GLIBCXX_NOEXCEPT
Forward iterators support a superset of input iterator operations.
void advance(_InputIterator &__i, _Distance __n)
A generalization of pointer arithmetic.
iterator insert(iterator __position, const value_type &__x)
Inserts given value into vector before specified iterator.
constexpr const _Tp * begin(initializer_list< _Tp > __ils) noexcept
Return an iterator pointing to the first element of the initilizer_list.
constexpr size_t size() const _GLIBCXX_NOEXCEPT
Returns the total number of bits.
A standard container which offers fixed time access to individual elements in any order...