Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 503 Bytes

deque-functions.md

File metadata and controls

29 lines (21 loc) · 503 Bytes
title description ms.date f1_keywords
<deque> functions
Learn more about: <deque> functions
11/04/2016
deque/std::swap

<deque> functions

swap

Exchanges the elements of two deques.

void swap(
    deque<Type, Allocator>& left,
    deque<Type, Allocator>& right);

Parameters

left
An object of type deque.

right
An object of type deque.

Example

See the example for deque::swap.