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


TypeScript Utils.Utils類代碼示例

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


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

示例1: formatted

 formatted(): string {
   let s: string = Utils.bigFormat(this.amount);
   if (this.amount.greaterThan(0.0)) {
     s = '+' + s;
   }
   return s;
 }
開發者ID:gaborfeher,項目名稱:grantmaster,代碼行數:7,代碼來源:FormattedAmount.ts

示例2: validate

 validate(): String[] {
   let errors = [];
   if (!this.date || !Utils.validateDate(this.date)) {
     errors.push('invalid date');
   }
   if (!this.localAmount || this.localAmount.lessThanOrEqualTo(0.0)) {
     errors.push('non-positive local amount');
   }
   if (!this.category) {
     errors.push('missing category');
   }
   return errors;
 }
開發者ID:gaborfeher,項目名稱:grantmaster,代碼行數:13,代碼來源:Expense.ts

示例3: validate

 validate(): String[] {
   let that: Income = this;
   let errors = [];
   if (!that.date || !Utils.validateDate(that.date)) {
     errors.push('invalid date');
   }
   if (!that.foreignAmount || that.foreignAmount.lessThanOrEqualTo(0.0)) {
     errors.push('non-positive foreign amount');
   }
   if (!that.exchangeRate || that.exchangeRate.lessThanOrEqualTo(0.0)) {
     errors.push('non-positive exchange rate');
   }
   return errors;
 }
開發者ID:gaborfeher,項目名稱:grantmaster,代碼行數:14,代碼來源:Income.ts

示例4: addLastExpenseInternal

  addLastExpenseInternal(expense: Expense): Project {
    let that: Project = this;

    let fulfilledAmount = new BigNumber(0);
    let iteration = 0;
    while (fulfilledAmount.lessThan(expense.localAmount)) {
      iteration += 1;
      let pos = findFirstNonEmptyIncome(that.incomes);
      let income = that.incomes.get(pos);
      let neededValue = expense.localAmount.minus(fulfilledAmount);
      let valueToTake = neededValue;
      let availableValue = income.localAmount.minus(income.spentLocalAmount);
      if (pos < that.incomes.size - 1) {
        // If this is not the last possible income, then cap fulfillment amount
        // to this income.
        valueToTake = Utils.bigMin(neededValue, availableValue);
      } else if (availableValue.lessThan(neededValue)) {
        expense = expense.set('overshoot', true);
      }
      that = that.merge({
        incomes: that.incomes.set(pos, income.spendInLocalCurrency(valueToTake))
      });
      expense = expense.merge({
        foreignAmount:
          expense.foreignAmount.plus(valueToTake.dividedBy(income.exchangeRate)),
        multiPart: iteration > 1
      });
      fulfilledAmount = fulfilledAmount.plus(valueToTake);
    }

    let exchangeRate = expense.localAmount.dividedBy(expense.foreignAmount);
    return that.merge({
      expenses: that.expenses.push(
        expense.set('exchangeRate', exchangeRate)
      )
    });
  }
開發者ID:gaborfeher,項目名稱:grantmaster,代碼行數:37,代碼來源:Project.ts


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