std::chrono::tzdb_list::erase_after

From cppreference.com
< cpp‎ | chrono‎ | tzdb list
 
 
Utilities library
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
Elementary string conversions
(C++17)
(C++17)
 
 
 
const_iterator erase_after( const_iterator p );
(since C++20)

Erases the std::chrono::tzdb referred to by the iterator following p. The behavior is undefined if that iterator is not dereferenceable. No pointers, references, or iterators are invalidated except for those referring to the erased element.

Return value

An iterator pointing to the element following the erased element, or end() if no such element exists.

Notes

tzdb_list is intended to be implementable as a singly linked list, and its interface resembles that of std::forward_list. It has no before_begin(), however, and so it is not possible to erase the first element.