In my html (.ng-template) I have an array, on which a filter is applied. I want to apply a map function to the result of this filter function (It's too expensive to apply it to the whole array before applying the filter). The older versions of angularjs allowed me to do so by
<ng-repeat = 'item in array.$filter(filterFunc).map(mapFunc).$orderBy("orderFunc()")'>
But with the new syntax (v 1.0.5) I am not able to do this.
<ng-repeat = 'item in array|filter:filterFunc|orderBy:"orderFunc()"'>
I do don't understand how do I apply map function to this. Is there any way to accomplish this?