[swift-evolution] [Proposal] Tuple Extensions

Robert Widmann devteam.codafi at gmail.com
Wed May 4 00:06:25 CDT 2016


Once-and-for-all implementations come in many flavors.  For now, we have clear interest in making a limited subset of possible tuples properly Comparable.  This will also make it easier to implement extensions to specific arities now and serve as a base for variadic generics if that is the path we take.  I could certainly see Future Swift™ allowing this to sit side-by-side with the finite version in this proposal, couldn't you?

extension (T...) : Equatable where T.Element : Equatable { }

func == <T : Equatable>(l : (T...), r : (T...)) -> Bool { /* .. */ }

~Robert Widmann

2016/05/04 0:54、Joe Groff <jgroff at apple.com> のメッセージ:

> 
>> On May 3, 2016, at 9:52 PM, Robert Widmann <devteam.codafi at gmail.com> wrote:
>> 
>> Trouble is that I don't want variadic generics without corresponding support from the type system which is untenable without HKTs (see last paragraph of proposal).  C++'s variadic implementation of std::tuple is not elegant to my mind, and would have no place in a library I could think of writing.
> 
> I think we'd keep tuples as a builtin type. Variadics would just let you implement Equatable/Hashable/etc. once for all tuple arities. I don't see why we'd need HKTs for that.
> 
> -Joe


More information about the swift-evolution mailing list