x
is an object that holds an array called point.
x
implements the subscript operator so you can do things, like x[i]
to get the array's ith element (of type T, which is usually an Int or Double).
This is what I want to do:
x[0...2] = [0...2]
But I get an error that says ClosedInterval<T>
is not convertible to Int/Double.
Edit1:
Here is my object x
:
let x = Point<Double>(dimensions:3)
For kicks and giggles: define x
as [1.0,2.0,0.0]
I can get the first n
elements via x[0...2]
.
What I want to know is how to update x[0...2] to hold [0.0, 0.0.0.0] in one fell swoop. Intuitively, I would want to do x[0...2] = [0...2]
. This does not work as can be seen in the answers. I want to update x
without iteration (on my end) and by hiding the fact that x
is not an array (even though it is not).
You need to implement
subscript(InvervalType)
to handle the case of multiple assignments like this. That isn't done for you automatically.