Skip to main content
Module

x/ddc_vim/deps.ts>fn.pow

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

Return the power of {x} to the exponent {y} as a |Float|. {x} and {y} must evaluate to a |Float| or a |Number|. Examples: :echo pow(3, 3) 27.0 :echo pow(2, 16) 65536.0 :echo pow(32, 0.20) 2.0 Can also be used as a |method|: Compute()->pow(3) {only available when compiled with the |+float| feature}

Parameters

denops: Denops
x: unknown
y: unknown

Returns

Promise<unknown>