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


TypeScript Utils.bigMin方法代碼示例

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


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

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