Constructs a set from the range [first, last)].
Synopsis
Declared in <absl/container/linked_hash_set.h>
template<class InputIter>
linked_hash_set(
InputIter first,
InputIter last,
size_t reservation_size,
allocator_type const& alloc);
Parameters
Name |
Description |
first |
Iterator to the first element in the range. |
last |
Iterator past the last element in the range. |
reservation_size |
The number of elements to reserve space for. |
alloc |
The allocator to use. |
Created with MrDocs