Tuples allow you to store several values together in a single value. That might sound like arrays, but tuples are different:
Tuples are created by placing multiple items into parentheses, like this:
var name = (first: "Taylor", last: "Swift")
You then access items using numerical positions starting from 0:
name.0
Or you can access items using their names:
name.first
Remember, you can change the values inside a tuple after you create it, but not the types of values. So, if you tried to change name
to be (first: "Justin", age: 25)
you would get an error.
SPONSORED AppSweep by Guardsquare helps developers automate the mobile app security testing process with fast, free scans. By using AppSweep’s actionable recommendations, developers can improve the security posture of their apps in accordance with security standards like OWASP.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.