// Copyright (C) 2022 Christian Mazakas // Copyright (C) 2024 Braden Ganetsky // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_UNORDERED_FLAT_MAP_FWD_HPP_INCLUDED #define BOOST_UNORDERED_FLAT_MAP_FWD_HPP_INCLUDED #include #if defined(BOOST_HAS_PRAGMA_ONCE) #pragma once #endif #include #include #include #ifndef BOOST_NO_CXX17_HDR_MEMORY_RESOURCE #include #endif namespace boost { namespace unordered { template , class KeyEqual = std::equal_to, class Allocator = std::allocator > > class unordered_flat_map; template bool operator==( unordered_flat_map const& lhs, unordered_flat_map const& rhs); template bool operator!=( unordered_flat_map const& lhs, unordered_flat_map const& rhs); template void swap(unordered_flat_map& lhs, unordered_flat_map& rhs) noexcept(noexcept(lhs.swap(rhs))); #ifndef BOOST_NO_CXX17_HDR_MEMORY_RESOURCE namespace pmr { template , class KeyEqual = std::equal_to > using unordered_flat_map = boost::unordered::unordered_flat_map > >; } // namespace pmr #endif } // namespace unordered using boost::unordered::unordered_flat_map; } // namespace boost #endif