Does this code have defined behaviour in the C++ standard library?
std::forward_list<T> list;
list.erase_after(list.before_begin());
Intuition would say no, but I haven't been able to locate the exact standards wording for this particular case.
Does this code have defined behaviour in the C++ standard library?
std::forward_list<T> list;
list.erase_after(list.before_begin());
Intuition would say no, but I haven't been able to locate the exact standards wording for this particular case.
Copyright © 2021 Jogjafile Inc.
The precondition on
erase_after
is:So your example has undefined behaviour, because
list
is empty, solist.before_begin()
is not incrementable, so there is no iterator following it.If the list has at least one element then
list.erase_after(list.before_begin())
is valid.