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


TypeScript lodash.floor函數代碼示例

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


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

示例1: tilesInView

 get tilesInView(): TilesInView {
     var startCol: number = _.floor(this.camera.x / this.map.tileWidth);
     var endCol: number = startCol + (this.camera.width / this.map.tileWidth);
     var startRow: number = _.floor(this.camera.y / this.map.tileHeight);
     var endRow: number = startRow + (this.camera.height / this.map.tileHeight);
     return {
         startCol: startCol, 
         endCol: _.min([endCol, this.map.colCount - 1]), 
         startRow: startRow, 
         endRow: _.min([endRow, this.map.rowCount - 1])
     };
 }
開發者ID:rbcasperson,項目名稱:canvas-tile-map,代碼行數:12,代碼來源:game.ts

示例2: main

async function main() {
  const config = getConfigRoot();
  const bfConfig = findBrokerConfig(config, 'Bitflyer');
  const bfApi = new BitflyerApi(bfConfig.key, bfConfig.secret);
  const bfBalance = await bfApi.getBalance();
  const bfBtc = (bfBalance.find(x => x.currency_code === 'BTC') as Balance).available;
  const request = {
    product_code: 'BTC_JPY',
    child_order_type: 'MARKET',
    side: 'SELL',
    size: _.floor(bfBtc, 4)
  };
  try {
    console.log(`Selling ${bfBtc}...`);
    const response = await bfApi.sendChildOrder(request);
    console.log(response);
  } catch (ex) {
    console.log(ex.message);
  }
}
開發者ID:tangkaisky,項目名稱:r2,代碼行數:20,代碼來源:closeBfPosition.ts

示例3: roundDown

function roundDown(valueToFloor: number): number {
    return _.floor(valueToFloor)
}
開發者ID:SalTor,項目名稱:runescape-hiscores,代碼行數:3,代碼來源:round-down.ts

示例4: getFloor

 getFloor(first: number, second: number) {
     return first <= second ? _.floor(first) : _.floor(second);
 }
開發者ID:chipster,項目名稱:chipster-web,代碼行數:3,代碼來源:expressionprofile.service.ts


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