* @param insert
* an array of byte.
* @return a {@link org.tarantool.core.Operation} object.
*/
public static Operation splice(int fieldNo, int removeFrom, int removeLength, byte[] insert) {
return new OperationImpl(Updates.SPLICE, fieldNo, new Tuple(3).setInt(0, removeFrom).setInt(1, removeLength).setBytes(2, insert));
}