Chemical Data Processing Library C++ API - Version 1.4.0
Namespaces | Functions
SequenceFunctions.hpp File Reference

Utility functions for sequential processing. More...

#include "CDPL/Util/APIPrefix.hpp"

Go to the source code of this file.

Namespaces

 CDPL
 The namespace of the Chemical Data Processing Library.
 
 CDPL::Util
 Contains general purpose algorithms, containers, functors and other classes.
 

Functions

template<typename InputIt1 , typename InputIt2 , typename BinaryFunc >
void CDPL::Util::forEachPair (InputIt1 it1, InputIt1 end1, InputIt2 it2, BinaryFunc func)
 Invokes the binary function func on every pair of corresponding elements drawn from two parallel input sequences. More...
 
template<typename InputIt1 , typename InputIt2 , typename BinaryFunc >
void CDPL::Util::forEachPair (InputIt1 it1, InputIt1 end1, InputIt2 it2, InputIt2 end2, BinaryFunc func)
 Invokes the binary function func on every pair of corresponding elements drawn from two parallel input sequences, stopping when either sequence is exhausted. More...
 

Detailed Description

Utility functions for sequential processing.