multisplice is a utility for efficiently performing multiple splice operations on a single array. Instead of repeatedly modifying the array with individual splice calls, multisplice consolidates these changes, applying them in a single pass. This approach significantly improves performance, especially when dealing with a large number of modifications to an array. This library offers a functional and immutable approach to array manipulation, returning a new array with all requested splices applied.