Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

10 righe
305 B

  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. }