I've just found myself writing CGPoint's .init
for the hundredth time today, and, long story short, I would love to have this feature
Although, I'm absolutely not a fan of throwing syntactic sugar all over the place, even if it is makes my coding bit easier.
What we can do here is to introduce something like plain old data transfer objects, that will have ability to be constructible from tuples, to be deconstructible to tuples and have guarantee that deconstruction to tuple A and construction from same tuple A will result to indistinguishable objects. Something like:
struct Point: DTOish {
var x, y: Float
}
let p = Point(2, 3)
let deconstructed: (Float, Float) = p.deconstructed
let new = Point(deconstructed)
// also:
func length(p: Point) { sqrt(p.x*p.x + p.y*p.y) }
lenght(p: (x: 2, y: 3)) // implicit construction
I think that addition looks much more coherent (is that the right word?), adding not only syntactic sugar but some higher meaning, reducing the barrier between tuples and structs.
It might be useful in many other places, for example, lets say I have some set of options for label displayed to user:
struct Opts {
var color: Color
var text: String
}
func display(with opts: Opts) {
label.color = opts.color
label.text = text
}
If I add new options, size, I will need to update every place where that options are used, to not forget about new option. With deconstruction compiler can warn me:
func display(with opts: Opts) {
// Error when additional option would be added
(label.color, label.text) = opts.deconstructed
}
Sorry for being a bit off-topic, but I honestly think that those thing should move together, and tuple deconstruction is such a great feature, that it is absolutely should be available for structs too 