std::forward_list<T,Allocator>::max_size (3) - Linux Manuals
std::forward_list<T,Allocator>::max_size: std::forward_list<T,Allocator>::max_size
Command to display std::forward_list<T,Allocator>::max_size
manual in Linux: $ man 3 std::forward_list<T,Allocator>::max_size
NAME
std::forward_list<T,Allocator>::max_size - std::forward_list<T,Allocator>::max_size
Synopsis
size_type max_size() const noexcept; (since C++11)
Returns the maximum number of elements the container is able to hold due to system or library implementation limitations, i.e. std::distance(begin(), end()) for the largest container.
Parameters
(none)
Return value
Maximum number of elements.
Complexity
Constant.
Notes
This value typically reflects the theoretical limit on the size of the container, at most std::numeric_limits<difference_type>::max(). At runtime, the size of the container may be limited to a value smaller than max_size() by the amount of RAM available.
Example
// Run this code
#include <iostream>
#include <forward_list>
int main()
{
std::forward_list<char> s;
std::cout << "Maximum size of a 'forward_list' is " << s.max_size() << "\n";
}
Possible output:
Maximum size of a 'forward_list' is 1152921504606846975
Pages related to std::forward_list<T,Allocator>::max_size
- std::forward_list<T,Allocator>::merge (3) - std::forward_list<T,Allocator>::merge
- std::forward_list<T,Allocator>::assign (3) - std::forward_list<T,Allocator>::assign
- std::forward_list<T,Allocator>::before_begin,cbefore_begin (3) - std::forward_list<T,Allocator>::before_begin,cbefore_begin
- std::forward_list<T,Allocator>::begin,std::forward_list<T,Allocator>::cbegin (3) - std::forward_list<T,Allocator>::begin,std::forward_list<T,Allocator>::cbegin
- std::forward_list<T,Allocator>::clear (3) - std::forward_list<T,Allocator>::clear
- std::forward_list<T,Allocator>::emplace_after (3) - std::forward_list<T,Allocator>::emplace_after
- std::forward_list<T,Allocator>::emplace_front (3) - std::forward_list<T,Allocator>::emplace_front
- std::forward_list<T,Allocator>::empty (3) - std::forward_list<T,Allocator>::empty
- std::forward_list<T,Allocator>::end,std::forward_list<T,Allocator>::cend (3) - std::forward_list<T,Allocator>::end,std::forward_list<T,Allocator>::cend
- std::forward_list<T,Allocator>::erase_after (3) - std::forward_list<T,Allocator>::erase_after
- std::forward_list<T,Allocator>::forward_list (3) - std::forward_list<T,Allocator>::forward_list
- std::forward_list<T,Allocator>::front (3) - std::forward_list<T,Allocator>::front
- std::forward_list<T,Allocator>::get_allocator (3) - std::forward_list<T,Allocator>::get_allocator
- std::forward_list<T,Allocator>::insert_after (3) - std::forward_list<T,Allocator>::insert_after
- std::forward_list<T,Allocator>::operator= (3) - std::forward_list<T,Allocator>::operator=
- std::forward_list<T,Allocator>::pop_front (3) - std::forward_list<T,Allocator>::pop_front
- std::forward_list<T,Allocator>::push_front (3) - std::forward_list<T,Allocator>::push_front
- std::forward_list<T,Allocator>::remove,remove_if (3) - std::forward_list<T,Allocator>::remove,remove_if
- std::forward_list<T,Allocator>::resize (3) - std::forward_list<T,Allocator>::resize
- std::forward_list<T,Allocator>::reverse (3) - std::forward_list<T,Allocator>::reverse
- std::forward_list<T,Allocator>::sort (3) - std::forward_list<T,Allocator>::sort
- std::forward_list<T,Allocator>::splice_after (3) - std::forward_list<T,Allocator>::splice_after
- std::forward_list<T,Allocator>::swap (3) - std::forward_list<T,Allocator>::swap
- std::forward_list<T,Allocator>::unique (3) - std::forward_list<T,Allocator>::unique
- std::forward_list<T,Allocator>::~forward_list (3) - std::forward_list<T,Allocator>::~forward_list
- std::forward_list (3) - std::forward_list