UNPKG

@euriklis/ds-architect

Version:

`@euriklis/ds-architect` is a modular and extensible library that provides a rich ecosystem for graph and network-based data structures. Designed with both academic rigor and practical application in mind, this library offers powerful graph algorithms and

4 lines (3 loc) 304 B
import type { DoublyLinkedList } from ".."; import type { Integer } from "../../../Types"; export declare const FillDLLWithRandomNumbers: (l: DoublyLinkedList<number>, n: Integer, from: number, to: number, seed: number, callback?: (d: number, id: string, list: DoublyLinkedList<number>) => any) => void;