[#bsl-slist-_M_assign_dispatch-0f] = xref:bsl.adoc[bsl]::xref:bsl/slist.adoc[slist]::_M_assign_dispatch :relfileprefix: ../../ :mrdocs: `_M_assign_dispatch` overloads == Synopses Declared in `<bslstp_slist.h>` Assign from the iterator range `[__first, __last)]`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class _InputIter> void xref:bsl/slist/_M_assign_dispatch-0b.adoc[_M_assign_dispatch]( _InputIter __first, _InputIter __last, xref:bsl/false_type.adoc[bsl::false_type]* __not_integral); ---- [.small]#xref:bsl/slist/_M_assign_dispatch-0b.adoc[_» more..._]# Assign `__n` copies of `__val` when the iterators are actually integers. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class _Integer> void xref:bsl/slist/_M_assign_dispatch-01.adoc[_M_assign_dispatch]( _Integer __n, _Integer __val, xref:bsl/true_type.adoc[bsl::true_type]* __integral); ---- [.small]#xref:bsl/slist/_M_assign_dispatch-01.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *__first* | beginning of the range to assign | *__last* | end of the range to assign (exclusive) | *__not_integral* | tag selecting the iterator‐range overload | *__n* | number of elements after assignment | *__val* | value copied into each element | *__integral* | tag selecting the integral overload |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#