UNPKG

typegpu

Version:

A thin layer between JS and WebGPU/WGSL that improves development experience and allows for faster iteration.

5 lines (4 loc) 194 B
/** * Yields values in the sequence 0,1,2..∞ except for the ones in the `excluded` set. */ export declare function naturalsExcept(excluded: Set<number>): Generator<number, number, unknown>;