| 2000 | return cbegin(); |
| 2001 | } |
| 2002 | const_iterator cbegin() const { // NOLINT(modernize-use-nodiscard) |
| 2003 | ROBIN_HOOD_TRACE(this) |
| 2004 | if (empty()) { |
| 2005 | return cend(); |
| 2006 | } |
| 2007 | return const_iterator(mKeyVals, mInfo, fast_forward_tag{}); |
| 2008 | } |
| 2009 | |
| 2010 | iterator end() { |
| 2011 | ROBIN_HOOD_TRACE(this) |