Check if value in array in angular template?

Is there any way to check if a value is in an array in an angular template? I'm looking to something like this: <div ng-class="{'myClass':1 in [1,2,5]}">Yay</div> Where myClass is app...