| 366 | |
| 367 | #ifndef _LIBCPP_CXX03_LANG |
| 368 | _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 iterator |
| 369 | insert(const_iterator __position, initializer_list<value_type> __il) { |
| 370 | return insert(__position, __il.begin(), __il.end()); |
| 371 | } |
| 372 | #endif |
| 373 | |
| 374 | _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 iterator erase(const_iterator __position); |
no test coverage detected