| 202 | const_iterator end() const BOOST_NOEXCEPT { return const_iterator(); } |
| 203 | |
| 204 | const_iterator cbegin() const BOOST_NOEXCEPT |
| 205 | { |
| 206 | return const_iterator(table_.begin()); |
| 207 | } |
| 208 | |
| 209 | const_iterator cend() const BOOST_NOEXCEPT { return const_iterator(); } |
| 210 |
no test coverage detected