funnel icon indicating copy to clipboard operation
funnel copied to clipboard

get rid of use of Seq

Open stew opened this issue 9 years ago • 1 comments

we are passing the Seq type around in a bunch of places. This type is an abomination we should avoid, since Seq doesn't tell us if the set is bounded, and doens't tell us if the set is immutable. There are, in fact, places in our code where we end up with a mutable Buffer. Even worse though is that there are places that we are calling .length on a List. We should probably just converge on Vector all these places.

stew avatar Feb 08 '16 22:02 stew

Would using the immutable Seq type (per http://hseeberger.github.io/blog/2013/10/25/attention-seq-is-not-immutable/) be a reasonable replacement?

kevinmeredith avatar Jul 14 '16 02:07 kevinmeredith