How can I refer to ArrayBuffer and Vector in a more generic way?
For example - one of my functions takes a Vector as an argument, while another returns an ArrayBuffer. What is a common "iterface" that I can use?
For example, in Java I could use List or Collection interface to pass them around.