In order to get code readability, we could add Array.contain to amp-bind. At the moment you could achieve the same behaviour by using Array.indexOf() but makes the expressions more complex.
For example,
myArray[index].values.indexOf(anotherIndex) >= 0 ? doSomething : doSomethingElse
could become
myArray[index].values.contains(anotherIndex) ? doSomething : doSomethingElse
@choumx