append At
Helper to handle pagination. Use this when you want to append a list of results at a given offset. This is safer than just appending blindly to a list because it guarantees that the data gets added at the offset it was requested at.
This will replace all contents starting at the offset with the new list. For example: 1,2,3.appendAt(4, 1) == 1,4]