|
Boost Users : |
From: Max (LoadCom_at_[hidden])
Date: 2008-04-30 04:21:57
Hi all
I'm wondering if there is such stuff in boost, or anything similar:
double d0, d1, d2, d3;
boost::array<double &, 4> array = {{d0, d1, d2, d3}};
for(int i=0; i<4; i++) array[i] = i;
assert(d2 == 2);
or
double d0, d1, d2, d3;
boost::array<double, 4> array;
boost::bind(array[0], d0);
boost::bind(array[1], d1);
boost::bind(array[2], d2);
boost::bind(array[3], d3);
for(int i=0; i<4; i++) array[i] = i;
assert(d2 == 2);
Thanks
Max
Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net