| 7911 | #if TOML_ENABLE_WINDOWS_COMPAT |
| 7912 | |
| 7913 | TOML_NODISCARD |
| 7914 | iterator lower_bound(std::wstring_view key) |
| 7915 | { |
| 7916 | if (empty()) |
| 7917 | return end(); |
| 7918 | |
| 7919 | return lower_bound(impl::narrow(key)); |
| 7920 | } |
| 7921 | |
| 7922 | TOML_NODISCARD |
| 7923 | const_iterator lower_bound(std::wstring_view key) const |
no test coverage detected