[#bsl-Deque_Util] = xref:bsl.adoc[bsl]::Deque_Util :relfileprefix: ../ :mrdocs: This `struct` provides a namespace to implement the `swap` member function of `deque<VALUE_TYPE, ALLOCATOR>`. This function can be implemented irrespective of the `VALUE_TYPE` or `ALLOCATOR` template parameters, which is why we implement it in this non‐parameterized, non‐inlined utility. == Synopsis Declared in `<bslstl_deque.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- struct Deque_Util; ---- == Static Member Functions [cols="1,4"] |=== | Name| Description | xref:bsl/Deque_Util/move.adoc[`move`] | Assign the value of the specified `dst` deque to that of the specified `src` deque, and reset the `src` deque to a raw state. | xref:bsl/Deque_Util/swap.adoc[`swap`] | Exchange the value of the specified `a` deque with that of the specified `b` deque. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#