Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.d.ts 305B

123456789
  1. export as namespace stable;
  2. export = stable;
  3. type Comparator<T> = ((a : T, b : T)=>boolean) | ((a: T, b : T)=>number);
  4. declare function stable<T>(array : T[], comparator? : Comparator<T>) : T[];
  5. declare namespace stable {
  6. export function inplace<T>(array: T[], comparator? : Comparator<T>) : T[];
  7. }