// More expressive design similar to Python list comprehensions that does not work by default for Read/Write
QModelWriter<>(&customModel).sequence().bind(persons,+[](QList<Person>&t,Seq<Cursor>&&s){// See https://stackoverflow.com/questions/18889028/a-positive-lambda-what-sorcery-is-this
for(auto&&person:t){// Read would require looping while !s.item()
QModelWriter<>(&customModel).sequence().bindWith([&](Seq<Cursor>&&s){// See https://stackoverflow.com/questions/18889028/a-positive-lambda-what-sorcery-is-this
for(auto&&person:persons){// Read would require looping while !s.item()