table of contents
        
      
      
    - Tumbleweed 2024.07.05-1.3
 - Leap-16.0
 - Leap-15.6
 
| std::vector::empty(3) | C++ Standard Libary | std::vector::empty(3) | 
NAME¶
std::vector::empty - std::vector::empty
Synopsis¶
 bool empty() const; (noexcept since C++11)
  
   (constexpr since C++20)
  
   Checks if the container has no elements, i.e. whether begin() == end().
Parameters¶
(none)
Return value¶
true if the container is empty, false otherwise.
Complexity¶
Constant.
Example¶
// Run this code
  
   #include <vector>
  
   #include <iostream>
  
   int main()
  
   {
  
   std::cout << std::boolalpha;
  
   std::vector<int> numbers;
  
   std::cout << "Initially, numbers.empty(): " <<
    numbers.empty() << '\n';
  
   numbers.push_back(42);
  
   std::cout << "After adding elements, numbers.empty(): "
    << numbers.empty() << '\n';
  
   }
Output:¶
 Initially, numbers.empty(): true
  
   After adding elements, numbers.empty(): false
See also¶
 size returns the number of elements
  
   (public member function)
  
   empty checks whether the container is empty
  
   (C++17) (function template)
| 2024.06.10 | http://cppreference.com |