[#bsl-vector-099-push_back-0e] = xref:bsl.adoc[bsl]::xref:bsl/vector-099.adoc[vector<pair<Date, DayOfWeekSet>>]::push_back :relfileprefix: ../../ :mrdocs: `push_back` overloads == Synopses Declared in `<bslstl_vector.h>` Append to the end of this vector the specified move‐insertable `value`. `value` is left in a valid but unspecified state. If an exception is thrown (other than by the move constructor of a non‐copy‐insertable `value_type`), `*this` is unaffected. Throw `std::length_error` if `size() == max_size()`. This method requires that the (template parameter) type `VALUE_TYPE` be `move‐insertable` into this vector (see {Requirements on `VALUE_TYPE`}). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:bsl/vector-099/push_back-03.adoc[push_back](xref:BloombergLP/bslmf/MovableRef.adoc[BloombergLP::bslmf::MovableRef<pair<Date, DayOfWeekSet>>] value); ---- [.small]#xref:bsl/vector-099/push_back-03.adoc[_» more..._]# Append to the end of this vector a copy of the specified `value`. If an exception is thrown, `*this` is unaffected. Throw `std::length_error` if `size() == max_size()`. This method requires that the (template parameter) type `VALUE_TYPE` be `copy‐constructible` (see {Requirements on `VALUE_TYPE`}). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:bsl/vector-099/push_back-06.adoc[push_back](xref:bsl/pair-0b.adoc[pair<Date, DayOfWeekSet>] const& value); ---- [.small]#xref:bsl/vector-099/push_back-06.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#