Files
DefinitelyTyped/lodash
Brian Zengel 0fad808e8d Added TResult generic to chainable _(...).pluck methods
This is needed because there is no way to cast the output in the middle of the chain.

This is not be done on _.pluck() methods because T cannot be inferred.  In other words, this:

    <number>_.pluck(objectArray, 'id');

or this:

    var id: number = _.pluck(objectArray, 'id');

is cleaner than this:

    _.pluck<IMyObjectInterface, number>(objectArray, 'id');
2014-06-02 16:41:45 -04:00
..