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

Variations on Copy
PrevUpHomeNext

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