EVOLUTION-MANAGER
Edit File: angular.bind.html
<a href='https://github.com/angular/angular.js/edit/v1.3.x/src/Angular.js?message=docs(angular.bind)%3A%20describe%20your%20change...#L908' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a> <a href='https://github.com/angular/angular.js/tree/v1.3.9/src/Angular.js#L908' class='view-source pull-right btn btn-primary'> <i class="glyphicon glyphicon-zoom-in"> </i>View Source </a> <header class="api-profile-header"> <h1 class="api-profile-header-heading">angular.bind</h1> <ol class="api-profile-header-structure naked-list step-list"> <li> - function in module <a href="api/ng">ng</a> </li> </ol> </header> <div class="api-profile-description"> <p>Returns a function which calls function <code>fn</code> bound to <code>self</code> (<code>self</code> becomes the <code>this</code> for <code>fn</code>). You can supply optional <code>args</code> that are prebound to the function. This feature is also known as <a href="http://en.wikipedia.org/wiki/Partial_application">partial application</a>, as distinguished from <a href="http://en.wikipedia.org/wiki/Currying#Contrast_with_partial_function_application">function currying</a>.</p> </div> <div> <h2 id="usage">Usage</h2> <p><code>angular.bind(self, fn, args);</code></p> <section class="api-section"> <h3>Arguments</h3> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> self </td> <td> <a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>Context which <code>fn</code> should be evaluated in.</p> </td> </tr> <tr> <td> fn </td> <td> <a href="" class="label type-hint type-hint-function">function()</a> </td> <td> <p>Function to be bound.</p> </td> </tr> <tr> <td> args </td> <td> <a href="" class="label type-hint type-hint-object">*</a> </td> <td> <p>Optional arguments to be prebound to the <code>fn</code> function call.</p> </td> </tr> </tbody> </table> </section> <h3>Returns</h3> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-function">function()</a></td> <td><p>Function that wraps the <code>fn</code> with all the specified bindings.</p> </td> </tr> </table> </div>