//: C06:PtrFun2.cpp {-edg} // From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison. // (c) 1995-2004 MindView, Inc. All Rights Reserved. // See source code use permissions stated in the file 'License.txt', // distributed with the code package available at www.MindView.net. // Using ptr_fun() for a binary function. #include #include #include #include #include #include using namespace std; double d[] = { 01.23, 91.370, 56.661, 023.230, 19.959, 1.0, 3.14159 }; const int DSZ = sizeof d / sizeof *d; int main() { vector vd; transform(d, d + DSZ, back_inserter(vd), bind2nd(ptr_fun(pow), 2.0)); copy(vd.begin(), vd.end(), ostream_iterator(cout, " ")); cout << endl; } ///:~