@monstermann/fn
Version:
A utility library for TypeScript.
24 lines • 939 B
TypeScript
//#region src/array/insertAllAtOr.d.ts
/**
* `insertAllAtOr(target, idx, values, or)`
*
* Inserts all `values` at the specified `idx` in `target`. If the index is out of bounds, returns `or`. Supports iterables.
*
* ```ts
* insertAllAtOr([1, 2, 3], 1, [8, 9], []); // [1, 8, 9, 2, 3]
* insertAllAtOr([1, 2, 3], 5, [8, 9], []); // []
* ```
*
* ```ts
* pipe([1, 2, 3], insertAllAtOr(1, [8, 9], [])); // [1, 8, 9, 2, 3]
* pipe([1, 2, 3], insertAllAtOr(5, [8, 9], [])); // []
* ```
*/
declare const insertAllAtOr: {
<T, U>(idx: number, values: Iterable<NoInfer<T>>, or: U): (target: T[]) => T[] | U;
<T, U>(idx: number, values: Iterable<NoInfer<T>>, or: U): (target: readonly T[]) => readonly T[] | U;
<T, U>(target: T[], idx: number, values: Iterable<NoInfer<T>>, or: U): T[] | U;
<T, U>(target: readonly T[], idx: number, values: Iterable<NoInfer<T>>, or: U): readonly T[] | U;
};
//#endregion
export { insertAllAtOr };