bsl::list::begin

begin overloads

Synopses

Declared in <bslstl_list.h>

Return an iterator providing modifiable access to the first element in this list, and the past-the-end iterator if this list is empty.

list<VALUE, ALLOCATOR>::iterator
begin() noexcept;
» more...

Return an iterator providing non-modifiable access to the first element in this list, or the past-the-end iterator if this list is empty.

list<VALUE, ALLOCATOR>::const_iterator
begin() const noexcept;
» more...