Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

linearBuckets

Create an array with equal spacing between the elements

function linearBuckets(
start: number,
width: number,
count: number,
): number[];
§
linearBuckets(start: number, width: number, count: number): number[]
[src]

§Parameters

§
start: number
[src]

The first value in the array

§
width: number
[src]

The spacing between the elements

§
count: number
[src]

The number of items in array

§Return Type

§
number[]
[src]

An array with the requested number of elements