Am Samstag, 22. November 2014 02:01:16 UTC+1 schrieb Tobias Beer: > > Hi Stephan, > > Works pretty well, I'd say. > Lesson learned: Why use one list if you can nest two? ^_^ >
The problem with this is: The complexity is O(n^2). The inner list needs to be executed for each member of the outer list again. I think with proper set operators and/or variables which could hold sets, stuff like this could be enhanced. <!-- fictious example --> <$set name="outer" filter="[[french]listed[courses]]"> <$set name="inner" filter="[[A2]listed[levels]"> <$list filter="[all<outer>] & [all<inner>]"/> </$set> </$set> -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/d/optout.

