With Backbone, it's possible to bind this in a collection helper: ``` javascript collection.each(function(model, index) { .. }, this); ``` With Ampersand, it's not: ``` javascript collection.each(function(model, index) { .. }.bind(this)); ``` May it be added as well?