add reduce with ObjectIterator

This commit is contained in:
davetayls
2015-01-26 10:13:12 +00:00
parent ceafc9969c
commit 8fdad6a617
+6
View File
@@ -179,6 +179,12 @@ interface UnderscoreStatic {
memo?: TResult,
context?: any): TResult;
reduce<T, TResult>(
list: _.Collection<T>,
iterator: _.ObjectIterator<T, TResult>,
memo?: TResult,
context?: any): TResult;
/**
* @see _.reduce
**/