| 2008 | } |
| 2009 | |
| 2010 | iterator end() { |
| 2011 | ROBIN_HOOD_TRACE(this) |
| 2012 | // no need to supply valid info pointer: end() must not be dereferenced, and only node |
| 2013 | // pointer is compared. |
| 2014 | return iterator{reinterpret_cast_no_cast_align_warning<Node*>(mInfo), nullptr}; |
| 2015 | } |
| 2016 | const_iterator end() const { // NOLINT(modernize-use-nodiscard) |
| 2017 | ROBIN_HOOD_TRACE(this) |
| 2018 | return cend(); |
no outgoing calls