Add more iterator constructor overloads

This commit is contained in:
Christian Mazakas
2023-04-20 15:35:04 -07:00
parent 5dfed4deec
commit 80d7203d78
2 changed files with 72 additions and 0 deletions

View File

@@ -217,6 +217,19 @@ namespace boost {
{
}
template <typename InputIterator>
concurrent_flat_map(
InputIterator f, InputIterator l, size_type n, const allocator_type& a)
: concurrent_flat_map(f, l, n, hasher(), key_equal(), a)
{
}
template <typename InputIterator>
concurrent_flat_map(InputIterator f, InputIterator l, size_type n,
const hasher& hf, const allocator_type& a)
: concurrent_flat_map(f, l, n, hf, key_equal(), a)
{
}
/// Capacity
///