rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
11 lines • 357 B
TypeScript
/**
* @public
* Removes each item in `itemsToRemove` from `items` (including any repeated items).
*
* @returns The number of items that were removed.
*
* @remarks
* See {@link arrayRemoveMany}.
*/
export declare function arrayRemoveMany<TItem>(items: TItem[], itemsToRemove: readonly TItem[]): number;
//# sourceMappingURL=array-remove-many.d.ts.map