Skip to main content
Module

x/ddc_vim/deps.ts>fn.isinf

Dark deno-powered completion framework for neovim/Vim8
Go to Latest
function fn.isinf
import { fn } from "https://deno.land/x/ddc_vim@v2.3.0/deps.ts";
const { isinf } = fn;

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>