
9 Oct
2008
9 Oct
'08
10:40 a.m.
How do I access the index_range of an array_view? ie., typedef boost::multi_array<Cell,2 > Grid; Grid grid( boost::extents[9][9]); Grid::array_view<2> view = grid[indices[range(), range()]]; for (Grid::index i = view.?????.start(); i != view.?????.finish(); ++i) {....} where I'm expecting i to take values 0..8 inclusive. Thanks - Rob.