Skip to main content
Module

x/denops_std/function/mod.ts>trunc

📚 Standard module for denops.vim
Go to Latest
function trunc
import { trunc } from "https://deno.land/x/denops_std@v3.11.3/function/mod.ts";

Return the largest integral value with magnitude less than or equal to {expr} as a |Float| (truncate towards zero). {expr} must evaluate to a |Float| or a |Number|. Examples: echo trunc(1.456) 1.0 echo trunc(-5.456) -5.0 echo trunc(4.0) 4.0 Can also be used as a |method|: Compute()->trunc() {only available when compiled with the |+float| feature}

Parameters

denops: Denops
expr: unknown

Returns

Promise<unknown>