bsl::slist::_M_assign_dispatch

_M_assign_dispatch overloads

Synopses

Declared in <bslstp_slist.h>

Assign from the iterator range [__first, __last)].

template<class _InputIter>
void
_M_assign_dispatch(
    _InputIter __first,
    _InputIter __last,
    bsl::false_type*);
» more...

Assign __n copies of __val when the iterators are actually integers.

template<class _Integer>
void
_M_assign_dispatch(
    _Integer __n,
    _Integer __val,
    bsl::true_type*);
» more...