UNPKG

@shumai/shumai

Version:

A fast, network-connected, differentiable tensor library for TypeScript (and JavaScript). Built with bun + flashlight for software engineers and researchers alike.

6 lines (5 loc) 413 B
import { util } from '@shumai/shumai'; export declare function range(length_or_start: number, end_?: number | null, stride_?: number | null): Generator<number, void, unknown>; export declare function tuiLoad(str: string): void; export declare function viter(arrayLike: util.ArrayLike | number, callback?: (_: number) => string): Generator<any, void, unknown>; export declare function shuffle<T>(array: T[]): T[];