CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
take-into.d.ts10 linesDownload Raw Back to obliterator
1import type {IntoInterator} from './types';2 3// Requires a resolution of https://github.com/microsoft/TypeScript/issues/12134// export default function takeInto<C<~>, T>(ArrayClass: new <T>(n: number) => C<T>, iterator: Iterator<T>, n: number): C<T>;5export default function takeInto<T>(6  ArrayClass: new <T>(arrayLength: number) => T[],7  iterator: IntoInterator<T>,8  n: number9): T[];10 
basant307/AI_Governance_Project · CoolFace