someArray.splice(a,b,...) method in JavaScript adds or removes items to/from array. What could be good and simple solution to implement such method in Java lang
someArray.splice(a,b,...)
In standard Java libraries, there is no equivalent functionality.
There is java.util.Arrays class, but no similar functionality there.
java.util.Arrays