If I have several QStringLists, for example:
QStringList str1 = {"name1", "name2", "name3"};
QStringList str2 = {"value1", "value2", "value3"};
QStringList str3 = {"add1", "add2", "add3"};
Is there any way to get list of lists (nested list) like QStringList listAll;
that will look like this:
(("name1","value1","add1"),("name2","value2","add2"),("name3","value3","add3"))