Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Variations on Copy

copy_until
copy_while
copy_if_until
copy_if_while

copy_until Copy all the elements from the start of the input range to the output range until the predicate is satisfied

copy_while Copy all the elements from the start of the input range to the output range while the predicate is satisfied

[*copy_if_until Copy all elements that satisfy the element predicate from the start of the input range to the output range until the termination predicate is satisfied

[*copy_if_while Copy all elements that satisfy the element predicate from the start of the input range to the output range while the termination predicate is satisfied


PrevUpHomeNext