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

Distribution

import type { Distribution } from "https://git.sr.ht/~ruivieira/deno-experiments/blob/master/randomjs/mod.ts";

A function to use an Engine to produce a value

type Distribution<T = number> = (engine: Engine) => T;

§Type Parameters

§
T = number
[src]

§Type

§
(engine: Engine) => T
[src]