* Requires index <= size(). * * Return an iterator to the element at index. Return end() if index == * size(). */
| 745 | * size(). |
| 746 | */ |
| 747 | iterator nth(size_type index) { return m_ht.nth(index); } |
| 748 | |
| 749 | /** |
| 750 | * @copydoc nth(size_type index) |
nothing calls this directly
no outgoing calls
no test coverage detected