Fettpet / DeepIterator

This project implements a trait based iterator.
4 stars 0 forks source link

Verschachtelter Iterator #13

Closed Fettpet closed 7 years ago

Fettpet commented 7 years ago

Soll zugriff auf das unterste Element unterstützen. Ein Beispiel: Ich habe einen verschachtelten Container con. Nun möchte ich mit

for(auto it=con.begin(); it!=con.end(); ++it)
{
        *it = 3;
}

Auf die Elemente zugreifen.

Fettpet commented 7 years ago

Done in bf70dfb

Fettpet commented 7 years ago

Damit wird auch DeepForeach überflüssig