.TH "std::indirectly_swappable" 3 "libstdc++" \" -*- nroff -*- .ad l .nh .SH NAME std::indirectly_swappable \- [alg\&.req\&.ind\&.swap], concept \fRindirectly_swappable\fP .SH SYNOPSIS .br .PP .PP \fR#include \fP .SH "Concept definition" .PP .nf template concept indirectly_swappable = indirectly_readable<_I1> && indirectly_readable<_I2> && requires(const _I1 __i1, const _I2 __i2) { ranges::iter_swap(__i1, __i1); ranges::iter_swap(__i2, __i2); ranges::iter_swap(__i1, __i2); ranges::iter_swap(__i2, __i1); } .PP .fi .SH "Detailed Description" .PP [alg\&.req\&.ind\&.swap], concept \fRindirectly_swappable\fP .SH "Author" .PP Generated automatically by Doxygen for libstdc++ from the source code\&.