In TestFilter, is there a trick to allow specifying the list index range in the Test Clause?
e.g., _list{[0-2]}.fruit = 'Apple'
rather than specifying each element index to test for individually:
_list{0}.fruit = 'Apple'
AND _list{1}.fruit = 'Apple'
AND _list{2}.fruit = 'Apple'
without going into PythonCaller way?