Czy można skonstruować warunek pętli if
tak aby w nim było zawarte iterowanie po elementach wektora, tj bez użycie pętli for
?
struct Cell
{
unsigned int x;
unsigned int y;
std::string text;
};
std::vector<Cell> data;
for each (Cell item in data)
{
if (item.x == 0 && item.y == 0) do_something;
}