It seems like there is no official benchmarks for some of the very commonly used classes, for example ArrayList.
I could not find the documentation on the runtime for insert or remove. Compared to Python's List, which is similar to ArrayList, there is a well documented runtime complexity (see link above).
This post, gave some somewhat detailed benchmark on removing and copying elements from an ArrayList, but it still doesn't give the exact complexity analysis. I'm working on a project which takes extremely long data (~500,000 data points) so I can't sit back and assume removing or inserting data from ArrayList operates in constant time like magic. Where can I find this information?