Deduce the template parameters VALUE_TYPE and ALLOCATOR from the parameters supplied to the constructor of list.

Synopsis

Declared in <bslstl_list.h>

template<
    ranges::input_range t_RANGE,
    class t_ALLOCATOR = allocator<ranges::range_value_t<t_RANGE>>>
list<ranges::range_value_t<t_RANGE>, t_ALLOCATOR>(
    std::from_range_t,
    t_RANGE&&,
    t_ALLOCATOR) → list<ranges::range_value_t<t_RANGE>, t_ALLOCATOR>;

Created with MrDocs