Skip to main content
Module

x/denops_std/function/mod.ts>floor

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

Return the largest integral value less than or equal to {expr} as a |Float| (round down). {expr} must evaluate to a |Float| or a |Number|. Returns 0.0 if {expr} is not a |Float| or a |Number|. Examples: echo floor(1.856) 1.0 echo floor(-5.456) -6.0 echo floor(4.0) 4.0 Can also be used as a |method|: Compute()->floor() {only available when compiled with the |+float| feature}

Parameters

denops: Denops
expr: unknown

Returns

Promise<unknown>