@monstermann/fn
Version:
A utility library for TypeScript.
24 lines • 1.02 kB
TypeScript
//#region src/array/replaceLastOr.d.ts
/**
* `replaceLastOr(target, value, replacement, or)`
*
* Replaces the last occurrence of `value` with `replacement` in `target` array. If the value is not found, returns the fallback value `or`. If value and replacement are the same, returns the original array unchanged.
*
* ```ts
* replaceLastOr([1, 2, 3, 2], 2, 5, []); // [1, 2, 3, 5]
* replaceLastOr([1, 2, 3], 4, 5, []); // []
* ```
*
* ```ts
* pipe([1, 2, 3, 2], replaceLastOr(2, 5, [])); // [1, 2, 3, 5]
* pipe([1, 2, 3], replaceLastOr(4, 5, [])); // []
* ```
*/
declare const replaceLastOr: {
<T, U>(value: NoInfer<T>, replacement: NoInfer<T>, or: U): (target: T[]) => T[] | U;
<T, U>(value: NoInfer<T>, replacement: NoInfer<T>, or: U): (target: readonly T[]) => readonly T[] | U;
<T, U>(target: T[], value: NoInfer<T>, replacement: NoInfer<T>, or: U): T[] | U;
<T, U>(target: readonly T[], value: NoInfer<T>, replacement: NoInfer<T>, or: U): readonly T[] | U;
};
//#endregion
export { replaceLastOr };