Let's say you have this ng-repeat with some filters
ng-repeat="city in cities" | filter={region:region} | filter=searchQuery etc..
I'd to run some logic on all cities that is filtred. For example summarize the population in all filtred cities. Is there any easy way to do this? Just get a list to the controller on all items that is filtred in the list?