Why is this not allowed? arr is a double[].
Vector<Double> v = new Vector<Double>(Arrays.asList(arr));
I get a unrecognized constructor error. It thinks i'm trying to use the Vector(java.util.List<double[]>)
constructor which seems odd cuz why would it be a list of double[]s? It compiles if i make it this
Vector<Double> v = new Vector(Arrays.asList(arr));
but then I get a warning about unchecked assignment