當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript underscore.iteratee函數代碼示例

本文整理匯總了TypeScript中underscore.iteratee函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript iteratee函數的具體用法?TypeScript iteratee怎麽用?TypeScript iteratee使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了iteratee函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: fn

export function sum<T>(list: T[], summer: _.ListIterator<T, number>): number {
  const fn = _.iteratee(summer) as _.ListIterator<T, number>;
  return _.reduce(
    list,
    (memo, val, index) => {
      return memo + fn(val, index, list);
    },
    0
  );
}
開發者ID:bhollis,項目名稱:DIM,代碼行數:10,代碼來源:util.ts

示例2: getItemAcrossStores

 /**
  * Find an item among all stores that matches the params provided.
  */
 function getItemAcrossStores(params: { id?: string; hash?: number; notransfer?: boolean }) {
   const predicate = _.iteratee(_.pick(params, 'id', 'hash', 'notransfer')) as (DimItem) => boolean;
   for (const store of _stores) {
     const result = store.items.find(predicate);
     if (result) {
       return result;
     }
   }
   return undefined;
 }
開發者ID:delphiactual,項目名稱:DIM,代碼行數:13,代碼來源:d2-stores.service.ts

示例3: sum

export function count<T>(list: T[], predicate: _.ListIterator<T, any>): number {
  const fn = _.iteratee(predicate) as _.ListIterator<T, any>;
  return sum(list, (item, index) => {
    return fn(item, index, list) ? 1 : 0;
  });
}
開發者ID:bhollis,項目名稱:DIM,代碼行數:6,代碼來源:util.ts

示例4: pick

import * as _ from 'underscore'

export const ModelMixin = {
    pick( ...args : any[] ){
        return _.pick( this, args );
    },

    escape( attr ){
        return _.escape( this[ attr ] );
    },

    matches( attrs ){
        return !!_.iteratee( attrs, this )( this );
    },

    omit( ...keys : string[] ) : {} {
        return this.mapObject( ( value, key ) => {
            if( keys.indexOf( key ) < 0 ){
                return value;
            }
        });
    },

    invert(){
        const inverted = {};
        this.each( ( value, key ) => inverted[ value ] = key );
        return inverted;
    },

    pairs(){
        return this.map( ( value, key ) => [ key, value ] );
開發者ID:Volicon,項目名稱:NestedTypes,代碼行數:31,代碼來源:underscore-mixin.ts


注:本文中的underscore.iteratee函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。