Skip to main content
Module

x/denops_std/function/mod.ts>isinf

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

Return 1 if {expr} is a positive infinity, or -1 a negative infinity, otherwise 0. :echo isinf(1.0 / 0.0) 1 :echo isinf(-1.0 / 0.0) -1 Can also be used as a |method|: Compute()->isinf() {only available when compiled with the |+float| feature}

Parameters

denops: Denops
expr: unknown

Returns

Promise<unknown>