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


TypeScript facade.ListWrapper類代碼示例

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


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

示例1: remove

 remove(key: string) {
   if (!StringWrapper.contains(key, '.')) {
     return this._data.delete(key);
   }
   var pieces = key.split('.');
   var last = ListWrapper.last(pieces);
   pieces.length = pieces.length - 1;
   var target = this._resolve(pieces, this);
   return target.remove(last);
 }
開發者ID:0xJoKe,項目名稱:angular,代碼行數:10,代碼來源:common.ts

示例2: set

 set(key: string, value) {
   if (key.indexOf('.') == -1) {
     this._data[key] = value;
     return;
   }
   var pieces = key.split('.');
   var last = ListWrapper.last(pieces);
   pieces.length = pieces.length - 1;
   var target = this._resolve(pieces, this);
   target[last] = value;
 }
開發者ID:0xJoKe,項目名稱:angular,代碼行數:11,代碼來源:common.ts

示例3: get

 get(key: string) {
   if (key.indexOf('.') == -1) {
     return this._data[key];
   }
   var pieces = key.split('.');
   var last = ListWrapper.last(pieces);
   pieces.length = pieces.length - 1;
   var target = this._resolve(pieces, this);
   if (target == null) {
     return null;
   }
   return target[last];
 }
開發者ID:0xJoKe,項目名稱:angular,代碼行數:13,代碼來源:common.ts

示例4: _computeStageButtons

 _computeStageButtons() {
   var disabled = true;
   this.stages = ListWrapper.clone(STATUS_LIST.map((status) => {
     var isCurrent = this._offering.status == status;
     var stage = new Stage();
     stage.name = status;
     stage.isDisabled = disabled;
     stage.backgroundColor = disabled ? '#DDD' : isCurrent ? '#DDF' : '#FDD';
     if (isCurrent) {
       disabled = false;
     }
     return stage;
   }));
 }
開發者ID:0xJoKe,項目名稱:angular,代碼行數:14,代碼來源:cells.ts

示例5: validate

 validate(completeSample: MeasureValues[]): MeasureValues[] {
   if (completeSample.length >= this._sampleSize) {
     var latestSample = ListWrapper.slice(completeSample, completeSample.length - this._sampleSize,
                                          completeSample.length);
     var xValues = [];
     var yValues = [];
     for (var i = 0; i < latestSample.length; i++) {
       // For now, we only use the array index as x value.
       // TODO(tbosch): think about whether we should use time here instead
       xValues.push(i);
       yValues.push(latestSample[i].values[this._metric]);
     }
     var regressionSlope = Statistic.calculateRegressionSlope(
         xValues, Statistic.calculateMean(xValues), yValues, Statistic.calculateMean(yValues));
     return regressionSlope >= 0 ? latestSample : null;
   } else {
     return null;
   }
 }
開發者ID:0xJoKe,項目名稱:angular,代碼行數:19,代碼來源:regression_slope_validator.ts

示例6:

 (value, cat) => { return value && ListWrapper.contains(eventCategories, cat); }, true);
開發者ID:4vanger,項目名稱:angular,代碼行數:1,代碼來源:chrome_driver_extension.ts


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