You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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