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


TypeScript lodash.intersection函數代碼示例

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


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

示例1:

 (category) => _.intersection(this.categories[category].states, pgStates).length
開發者ID:IlsooByun,項目名稱:ceph,代碼行數:1,代碼來源:pg-category.service.ts

示例2: intersectsLSV

export function intersectsLSV(
  x: JsonldListSetValue,
  y: JsonldListSetValue
): boolean {
  return !isEmpty(intersection(getValuesLSV(x), getValuesLSV(y)));
}
開發者ID:bridgedb,項目名稱:bridgedbjs,代碼行數:6,代碼來源:jsonld-utils.ts

示例3: weekRangeConflict

export function weekRangeConflict(wr1: WeekRange, wr2: WeekRange) {
    return _.intersection(weekRangeToArray(wr1), weekRangeToArray(wr2)).length > 0;
}
開發者ID:Gitjerryzhong,項目名稱:bell-tm-static,代碼行數:3,代碼來源:week-range.ts

示例4: getKeyForAggregationField

 static getKeyForAggregationField(dataObj): string {
   const keys = _.keys(dataObj);
   return _.intersection(keys, ['sum', 'avg', 'min', 'max', 'count', 'unique'])[0];
 }
開發者ID:gnydick,項目名稱:grafana,代碼行數:4,代碼來源:response_parser.ts

示例5:

 seq => !includedContext.length || _.intersection(seq.contexts || [], includedContext).length
開發者ID:alexsandrocruz,項目名稱:botpress,代碼行數:1,代碼來源:exact_matcher.ts

示例6:

 activeEffects = [...activeEffects.filter(activeEffect =>
   _.intersection(activeEffect.monoGroups, effect.monoGroups).length === 0
開發者ID:shybyte,項目名稱:web-midi-patcher,代碼行數:2,代碼來源:controller.ts

示例7: return

 return (option: O) => typeof option.groups !== 'undefined' && lodash.intersection(option.groups, g).length > 0;
開發者ID:driftyco,項目名稱:ionic-cli,代碼行數:1,代碼來源:options.ts


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