Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/ddc_vim/deps.ts>fn.or

Dark deno-powered completion framework for neovim/Vim
Very Popular
Go to Latest
function fn.or
import { fn } from "https://deno.land/x/ddc_vim@v4.0.3/deps.ts";
const { or } = fn;

Bitwise OR on the two arguments. The arguments are converted to a number. A List, Dict or Float argument causes an error. Also see and() and xor(). Example:

:let bits = or(bits, 0x80)

Can also be used as a method:

:let bits = bits->or(0x80)

Rationale: The reason this is a function and not using the "|" character like many languages, is that Vi has always used "|" to separate commands. In many places it would not be clear if "|" is an operator or a command separator.

Parameters

denops: Denops
expr1: unknown
expr2: unknown

Returns

Promise<number>