Skip to main content
Module

x/collections/common.ts>RangeOptions

Collection data structures that are not standard built-in objects in JavaScript. This includes a vector (double-ended queue), binary heap (priority queue), binary search tree, and a red black tree.
Very Popular
Go to Latest
interface RangeOptions
import { type RangeOptions } from "https://deno.land/x/collections@v0.9.1/common.ts";

Properties

end: number

The exclusive upper bound for a range.

optional
start: number

The inclusive lower bound for a range. Defaults to 0.

optional
step: number

The value to increment by. Defaults to 1.