Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/netsaur/packages/utilities/src/utils/misc/mod.ts>Shape

Powerful Powerful Machine Learning library with GPU, CPU and WASM backends
Latest
type alias Shape
Re-export
import { type Shape } from "https://deno.land/x/netsaur@0.4.2/packages/utilities/src/utils/misc/mod.ts";

An array with n items

Type Parameters

N extends number
definition: N extends 0 ? [] : [number, ...number[]] & { length: N; }