C/C++
pete.txt
Associated article: PETE: The Portable Expression Template Engine
Tags: C/C++
Published source code accompanying the article by Scott Haney, James Crotinger, Steve Karmesin, and Stephen Smith in which they present PETE, short for "Portable Expression Template Engine"--a C++ framework that lets users easily add expression-template functionality to container classes and perform complex expression manipulations. Also see PETE.ZIP.
PETE: The Portable Expression Template Engine by Scott Haney, James Crotinger, Steve Karmesin, Stephen Smith Example 1: vector<double>::iterator iterA = A.begin(); vector<int>::const_iterator iterB = B.begin(); vector<double>::const_iterator iterC = ...


