The following code does not compile (Xcode 10.1 default toolchain and Swift 5 Snapshot 2018-12-04 toolchain).
let counter = 119
let final: (min: Int, sec: Int) = counter.quotientAndRemainder(dividingBy: 60)
This gives:
error: cannot convert value of type '(quotient: Int, remainder: Int)' to specified type '(min: Int, sec: Int)'
However, this rather clumsy workaround does exactly this:
let counter = 119
let foo = counter.quotientAndRemainder(dividingBy: 60)
let bar: (Int, Int) = foo
let final: (min: Int, sec: Int) = bar
print(final) // (min: 1, sec: 59)
Couldn't/ shouldn't the type annotated first version work? This is not tuple shuffle, currently in discussion, but perhaps somehow related. Don't know…
Just had a case in my code where this could have made it better understandable at first glance.
Edit:
Just getting my head around the tuple shuffle topic.
var a = (a: 1, b: 2)
print(a) // (a: 1, b: 2)
var b: (b: Int, a: Int) = a
print(b) // (b: 2, a: 1)
This shuffles around the elements of the tuple according to their matching names. I would propose that the order of the elements always stays the same, but the names can freely be changed as long as the types match in the original order.
Ah, I see. This actually works (in one line). Clever. Thank you. Nice Idea.^^ However, it still has this explicit name erasing intermediate step. Plus you have to practically double the type annotation, which becomes really annoying if it's not just a tuple of two. ;-)
Now, this 'solution' brings up quite a strange warning in my code, although it's working. I do this in a guard let assignment.
Conditional downcast from '(quotient: Int, remainder: Int)?' to '(Int, Int)' is equivalent to an implicit conversion to an optional '(Int, Int)'
Replace ' as? (Int, Int)' with ''
I'm told to remove the cast completely. That would be my original code, which is not working. Funny guy, this compiler. ;) as and as! don't work either. Perhaps some complicated setting of brackets around… Stop! That doesn't make the code better readable.
I guess there is room for improvement on the language side.
Tuple element labels (or lack of labels) are part of the tuple's type. Conversion is allowed between labeled and unlabeled tuples (with matching element types):
func test() {
var t = (1, 2)
var t1 = (a: 1, b: 2)
var t2 = (c: 3, d: 4)
print(type(of: t)) // (Int, Int)
print(type(of: t1)) // (a: Int, b: Int)
print(type(of: t2)) // (c: Int, d: Int)
t = t1 // OK
t = t2 // OK
t1 = t // OK
t2 = t // OK
//t1 = t2 // ERROR: Cannot assign value of type '(c: Int, d: Int)' to type '(a: Int, b: Int)'
//t2 = t1 // ERROR: Cannot assign value of type '(a: Int, b: Int)' to type '(c: Int, d: Int)'
t1 = t2 as (Int, Int) // OK
t2 = t1 as (Int, Int) // OK
}
test()
I think it is somehow more desirable than what you ask for (blindly allow conversion between any tuples with matching element types disregarding their labels) because it would remove the use of / need for labels, at least from a type safety point of view.
I forgot to mention another subtle side of the current behavior:
func test() {
var a = (x: 1, y: 2)
var b = (y: 3, x: 4)
a = b // OK (perhaps surprisingly)
print(a) // (x: 4, y: 3)
b = a // OK (perhaps surprisingly)
print(b) // (y: 3, x: 4)
print(a == b) // false (perhaps surprising that two values of different type can be checked for equality?)
print(a == b as (x: Int, y: Int)) // true
print(type(of: a) == type(of: b)) // false
}
test()
I don't think the above is desirable behavior and it will not compile if tuple shuffling is deprecated. But if what you ask for would be allowed, then I guess the above would have to compile, and the result would probably be different, I guess it would be like this:
// NOTE: Speculated alternative behavior if label-ignoring conversion was allowed:
func test() {
var a = (x: 1, y: 2)
var b = (y: 3, x: 4)
a = b // OK
print(a) // (x: 3, y: 4)
b = a // OK
print(b) // (y: 3, x: 4)
print(a == b) // true
print(a == b as (x: Int, y: Int)) // true
print(type(of: a) == type(of: b)) // true ... I guess ... ?
}
test()
Which would arguably be even stranger than the current behavior. Also, would the type of a and b be different or the same?
I think the current behavior + deprecated tuple shuffles makes most sense, all aspects (that I can think of) taken into consideration.
Wouldn't that be 'just' a matter of scope, like in shadowing variables?
// so valuable function ;)
func foo(value: Int?) {
if let value = value {
print(value) // unwrapped local value
}
print(value) // original passed in optional value is still alive
}
Tuple elements can always be accessed by their index. The label, as I see it, is just a nice to have convenience to ease access and readability. Why shouldn't it be possible to shadow the labels or convert them, if I can do that in an intermediate label erasing step anyway? o_O
If the label really matters that much, what is the difference from a struct? The quotientAndRemainder(dividingBy:)function that gave me the intro could 'equally' well return a struct.
I find it rather strange that you annotate the status quo code three times with 'surprisingly' or 'surprising' but still thinks that the code where you don't find anything 'surprisingly' is still 'stranger'… ;)
How about the following, which is currently allowed, and will continue to be allowed even after tuple shuffling is deprected, and is caused by the == operator that accepts any two tuples with matching element types and ignores their labels:
func test() {
let ten = 10
let rq = (remainder: 3, quotient: 1)
let qr = ten.quotientAndRemainder(dividingBy: 3)
print(qr == rq) // true <--- What? So 3 * 1 + 3 == 10 ... !?
print(type(of: rq) == type(of: qr)) // false
}
test()
IMHO it shouldn't even be OK to, without explicit intent, check two values of different types for equality like this.
The labels are meant to carry meaning, yellow and blue become less problematic (and more nonsensical) than remainder and quotient in reverse order. I think neither should compile and I've made my position clear and motivated it thoroughly above and would only repeat myself if I continued this debate : ).
I think you're not seeing tuples as types, but more of a convenient bundling of independent variables. To go back to structs, you wouldn't expect the following to work:
struct S { let x: Int, y: Int }
struct T { let x: Int, y: Int }
let s: S = T() // error: wrong type
The two structs not only have the same members, in the same order, with the same types, they are also the same names. Yet, S and T are considered distinct types. The same applies to tuples. Tuple types are a combination of their elements' labels and types. Taking labels out of consideration would move tuples closer to being bundled variables, and not distinct types.
I think that tuples should remain types (and be more consistently so), and for the same reason I think that it is unfortunate that the following works, and will continue to work even if eg tuple shuffling is deprecated:
func test() {
let a = (x: 1, y: 2)
let b = (y: 1, x: 2)
print(a == b) // true (!)
print(type(of: a) == type(of: b)) // false
print(a.x == b.x && a.y == b.y) // false
}
test()
It's a little inconsistent, but one could view it as automatic synthesis of == for the two different tuple types. Again, illustrating with structs, because it's easier.
In Swift, labels for tuple elements are part of the type.
As a convenience, Swift allows you implicitly to erase labels--that is, let a: (Int, Int) = (x: 1, y: 2)--and to add labels--that is, let a: (x: Int, y: Int) = (1, 2). However, Swift does not allow you to assign a tuple with one set of labels to a variable of tuple type with a different set of labels. This is a deliberate design choice.
None of this has to do with tuple shuffling.
It sounds like you'd prefer a language where labels for tuple elements are not part of the type. That's not the case with Swift.
It has, in that tuple shuffling allows what Swift otherwise does not allow, ie to "assign a tuple with one set of labels to a variable of tuple type with a different set of labels":
func test() {
let a = (x: 1, y: 2)
var b = (y: 3, x: 4)
print(type(of: a) == type(of: b)) // false
b = a // <-- Assigment between tuples of different types.
print(b) // (y: 2, x: 1)
}
test()
EDIT: I guess you're right because you used "set" rather than "sequence/list" ...