• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript collection.List类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中angular2/src/facade/collection.List的典型用法代码示例。如果您正苦于以下问题:TypeScript List类的具体用法?TypeScript List怎么用?TypeScript List使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了List类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: coalesce

export function coalesce(records: ProtoRecord[]): ProtoRecord[] {
  var res: List<ProtoRecord> = [];
  var indexMap: Map<number, number> = new Map<number, number>();

  for (var i = 0; i < records.length; ++i) {
    var r = records[i];
    var record = _replaceIndices(r, res.length + 1, indexMap);
    var matchingRecord = _findMatching(record, res);

    if (isPresent(matchingRecord) && record.lastInBinding) {
      res.push(_selfRecord(record, matchingRecord.selfIndex, res.length + 1));
      indexMap.set(r.selfIndex, matchingRecord.selfIndex);
      matchingRecord.referencedBySelf = true;

    } else if (isPresent(matchingRecord) && !record.lastInBinding) {
      if (record.argumentToPureFunction) {
        matchingRecord.argumentToPureFunction = true;
      }

      indexMap.set(r.selfIndex, matchingRecord.selfIndex);

    } else {
      res.push(record);
      indexMap.set(r.selfIndex, record.selfIndex);
    }
  }

  return res;
}
开发者ID:goderbauer,项目名称:angular,代码行数:29,代码来源:coalesce.ts


示例2: ifChangedGuardTemplate

function ifChangedGuardTemplate(changeNames: List<any>, body: string): string {
  var cond = changeNames.join(" || ");
  return `
if (${cond}) {
  ${body}
}
`;
}
开发者ID:Muthamizhan,项目名称:angular,代码行数:8,代码来源:change_detection_jit_generator.ts


示例3: getLocalNames

 getLocalNames(records: List<ProtoRecord>): List<string> {
   var index = 0;
   var names = records.map((r) => {
     var sanitizedName = r.name.replace(new RegExp("\\W", "g"), '');
     return `${sanitizedName}${index++}`
   });
   return ["context"].concat(names);
 }
开发者ID:Muthamizhan,项目名称:angular,代码行数:8,代码来源:change_detection_jit_generator.ts


示例4: _getNonNullPipeNames

 _getNonNullPipeNames(): List<string> {
   var pipes = [];
   this.records.forEach((r) => {
     if (r.isPipeRecord()) {
       pipes.push(this._pipeNames[r.selfIndex]);
     }
   });
   return pipes;
 }
开发者ID:jimthedev,项目名称:angular,代码行数:9,代码来源:change_detection_jit_generator.ts


示例5: getNonNullPipeNames

 getNonNullPipeNames(): List<string> {
   var pipes = [];
   this.records.forEach((r) => {
     if (r.mode === RECORD_TYPE_PIPE || r.mode === RECORD_TYPE_BINDING_PIPE) {
       pipes.push(this.pipeNames[r.selfIndex]);
     }
   });
   return pipes;
 }
开发者ID:Muthamizhan,项目名称:angular,代码行数:9,代码来源:change_detection_jit_generator.ts


示例6: ProtoRecord

 _addRecord(type, name, funcOrValue, args, fixedArgs, context) {
   var selfIndex = this._records.length + 1;
   if (context instanceof DirectiveIndex) {
     this._records.push(new ProtoRecord(type, name, funcOrValue, args, fixedArgs, -1, context,
                                        selfIndex, this._bindingRecord, this._expressionAsString,
                                        false, false));
   } else {
     this._records.push(new ProtoRecord(type, name, funcOrValue, args, fixedArgs, context, null,
                                        selfIndex, this._bindingRecord, this._expressionAsString,
                                        false, false));
   }
   return selfIndex;
 }
开发者ID:jimthedev,项目名称:angular,代码行数:13,代码来源:proto_change_detector.ts


示例7:

 _printDescription(sampleDescription) {
   this._print(`BENCHMARK ${sampleDescription.id}`);
   this._print('Description:');
   var props = ConsoleReporter._sortedProps(sampleDescription.description);
   props.forEach((prop) => { this._print(`- ${prop}: ${sampleDescription.description[prop]}`); });
   this._print('Metrics:');
   this._metricNames.forEach((metricName) => {
     this._print(`- ${metricName}: ${sampleDescription.metrics[metricName]}`);
   });
   this._print('');
   this._printStringRow(this._metricNames);
   this._printStringRow(this._metricNames.map((_) => ''), '-');
 }
开发者ID:CADBOT,项目名称:angular,代码行数:13,代码来源:console_reporter.ts


示例8: go

 go(url: string) {
   url = this.normalizeAbsolutely(url);
   if (this._path == url) {
     return;
   }
   this._path = url;
   this.urlChanges.push(url);
 }
开发者ID:Salim-K,项目名称:angular,代码行数:8,代码来源:location_mock.ts


示例9: whenStable

  whenStable(callback: Function) {
    this._callbacks.push(callback);

    if (this._pendingCount === 0) {
      this._runCallbacks();
    }
    // TODO(juliemr) - hook into the zone api.
  }
开发者ID:AsherBarak,项目名称:angular,代码行数:8,代码来源:testability.ts


示例10: function

  generate(): Function {
    var classDefinition = `
      var ${this.typeName} = function ${this.typeName}(dispatcher, pipeRegistry, protos, directiveRecords) {
        ${ABSTRACT_CHANGE_DETECTOR}.call(this);
        ${DISPATCHER_ACCESSOR} = dispatcher;
        ${PIPE_REGISTRY_ACCESSOR} = pipeRegistry;
        ${PROTOS_ACCESSOR} = protos;
        ${DIRECTIVES_ACCESSOR} = directiveRecords;
        ${LOCALS_ACCESSOR} = null;
        ${this._genFieldDefinitions()}
      }

      ${this.typeName}.prototype = Object.create(${ABSTRACT_CHANGE_DETECTOR}.prototype);

      ${this.typeName}.prototype.detectChangesInRecords = function(throwOnChange) {
        ${this._genLocalDefinitions()}
        ${this._genChangeDefinitions()}
        var ${IS_CHANGED_LOCAL} = false;
        var ${CURRENT_PROTO};
        var ${CHANGES_LOCAL} = null;

        context = ${CONTEXT_ACCESSOR};

        ${this.records.map((r) => this._genRecord(r)).join("\n")}
      }

      ${this.typeName}.prototype.callOnAllChangesDone = function() {
        ${this._genCallOnAllChangesDoneBody()}
      }

      ${this.typeName}.prototype.hydrate = function(context, locals, directives) {
        ${MODE_ACCESSOR} = "${ChangeDetectionUtil.changeDetectionMode(this.changeDetectionStrategy)}";
        ${CONTEXT_ACCESSOR} = context;
        ${LOCALS_ACCESSOR} = locals;
        ${this._genHydrateDirectives()}
        ${this._genHydrateDetectors()}
      }

      ${this.typeName}.prototype.dehydrate = function() {
        ${this._genPipeOnDestroy()}
        ${this._genFieldDefinitions()}
        ${LOCALS_ACCESSOR} = null;
      }

      ${this.typeName}.prototype.hydrated = function() {
        return ${CONTEXT_ACCESSOR} !== ${UTIL}.uninitialized();
      }

      return function(dispatcher, pipeRegistry) {
        return new ${this.typeName}(dispatcher, pipeRegistry, protos, directiveRecords);
      }
    `;

    return new Function('AbstractChangeDetector', 'ChangeDetectionUtil', 'protos',
                        'directiveRecords', classDefinition)(
        AbstractChangeDetector, ChangeDetectionUtil, this.records, this.directiveRecords);
  }
开发者ID:188799958,项目名称:angular,代码行数:57,代码来源:change_detection_jit_generator.ts



注:本文中的angular2/src/facade/collection.List类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript collection.ListWrapper类代码示例发布时间:2022-05-25
下一篇:
TypeScript collection.iterateListLike函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap