<div ng-repeat=" x in z">
<div ng-if="function(x).y" >
display this
</div>
</div>
上記のコードでは、ng-if関数(x)は更新なしでは呼び出されません。
何か足りないものがないか確認して提案してください。
これが実例です
angular.module('app', [])
.controller('ctrl', function($scope) {
$scope.z = [1,2,3];
$scope.display = function(x) {
return x === 2
};
});
<div ng-app="app" ng-controller='ctrl'>
<div ng-repeat=" x in z">
<div ng-if="display(x)" >
display this
</div>
</div>
</div>
そして フィドル 。