Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/container/forward list/empty"

From cppreference.com
m (Add link to edit the included template)
m (r2.7.3) (Robot: Adding de, es, fr, it, ja, pt, ru, zh)
Line 1: Line 1:
 
{{page template|cpp/container/empty|forward_list}}
 
{{page template|cpp/container/empty|forward_list}}
 +
 +
[[de:cpp/container/forward list/empty]]
 +
[[es:cpp/container/forward list/empty]]
 +
[[fr:cpp/container/forward list/empty]]
 +
[[it:cpp/container/forward list/empty]]
 +
[[ja:cpp/container/forward list/empty]]
 +
[[pt:cpp/container/forward list/empty]]
 +
[[ru:cpp/container/forward list/empty]]
 +
[[zh:cpp/container/forward list/empty]]

Revision as of 20:11, 2 November 2012

 
 
 
 
bool empty() const noexcept;
(since C++11)

Checks if the container has no elements, i.e. whether begin() == end().

Contents

Parameters

(none)

Return value

true if the container is empty, false otherwise.

Complexity

Constant.

Example

The following code uses empty to check if a std::forward_list<int> contains any elements:

#include <forward_list>
#include <iostream>
 
int main()
{
    std::forward_list<int> numbers;
    std::cout << std::boolalpha;
    std::cout << "Initially, numbers.empty(): " << numbers.empty() << '\n';
 
    numbers.push_front(42);
    numbers.push_front(13317); 
    std::cout << "After adding elements, numbers.empty(): " << numbers.empty() << '\n';
}

Output:

Initially, numbers.empty(): true
After adding elements, numbers.empty(): false

See also

returns the distance between two iterators
(function template) [edit]