Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
nvie committed Apr 5, 2023
1 parent b6618ca commit 997e99f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/types/itertools.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ export function count(start?: number, step?: number): Iterable<number>;
export function compress<T>(data: Iterable<T>, selectors: Iterable<boolean>): T[];
export function cycle<T>(iterable: Iterable<T>): Iterable<T>;
export function dropwhile<T>(iterable: Iterable<T>, predicate: Predicate<T>): Iterable<T>;
export function groupby<T, U extends Primitive>(iterable: Iterable<T>, keyFn?: (item: T) => U): Iterable<[U, Iterable<T>]>;
export function groupby<T, U extends Primitive>(
iterable: Iterable<T>,
keyFn?: (item: T) => U
): Iterable<[U, Iterable<T>]>;
export function icompress<T>(data: Iterable<T>, selectors: Iterable<boolean>): Iterable<T>;
export function ifilter<T>(iterable: Iterable<T>, predicate: Predicate<T>): Iterable<T>;
export function imap<T, V>(iterable: Iterable<T>, mapper: (item: T) => V): Iterable<V>;
Expand Down

0 comments on commit 997e99f

Please sign in to comment.