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


TypeScript ListWrapper.slice方法代碼示例

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


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

示例1: it

 it('should return the last sampleSize runs when it has at least the given size', () => {
   createValidator(2);
   var sample = [mv(0, 0, {'a': 1}), mv(1, 1, {'b': 2}), mv(2, 2, {'c': 3})];
   expect(validator.validate(ListWrapper.slice(sample, 0, 2)))
       .toEqual(ListWrapper.slice(sample, 0, 2));
   expect(validator.validate(sample)).toEqual(ListWrapper.slice(sample, 1, 3));
 });
開發者ID:2blessed2bstressedbythedevilsmess,項目名稱:angular,代碼行數:7,代碼來源:size_validator_spec.ts

示例2: it

 it('should return the last sampleSize runs when the regression slope is >0', () => {
   createValidator({size: 2, metric: 'script'});
   var sample = [mv(0, 0, {'script': 1}), mv(1, 1, {'script': 2}), mv(2, 2, {'script': 3})];
   expect(validator.validate(ListWrapper.slice(sample, 0, 2)))
       .toEqual(ListWrapper.slice(sample, 0, 2));
   expect(validator.validate(sample)).toEqual(ListWrapper.slice(sample, 1, 3));
 });
開發者ID:0xJoKe,項目名稱:angular,代碼行數:7,代碼來源:regression_slope_validator_spec.ts

示例3: validate

 validate(completeSample: MeasureValues[]): MeasureValues[] {
   if (completeSample.length >= this._sampleSize) {
     return ListWrapper.slice(completeSample, completeSample.length - this._sampleSize,
                              completeSample.length);
   } else {
     return null;
   }
 }
開發者ID:0xJoKe,項目名稱:angular,代碼行數:8,代碼來源:size_validator.ts

示例4: 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


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