|
|
@@ -43,6 +43,7 @@ __match_first {
|
|
|
fn Convert[self: Self]() -> U { return __EqualConvert(self, U); }
|
|
|
}
|
|
|
|
|
|
+ // A tuple implicitly converts to another tuple if all its elements do.
|
|
|
// TODO: Simplify this once we have variadics.
|
|
|
// TODO: Should these be final?
|
|
|
impl forall [U1:! type, T1:! ImplicitAs(U1)]
|
|
|
@@ -67,6 +68,32 @@ __match_first {
|
|
|
return (v1.Convert(), v2.Convert(), v3.Convert());
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ // A tuple explicitly converts to another tuple if all its elements do. Note
|
|
|
+ // that this fully overlaps with the previous set of impls for the case where
|
|
|
+ // an implicit conversion is possible.
|
|
|
+ impl forall [U1:! type, T1:! As(U1)]
|
|
|
+ (T1,) as As((U1,)) {
|
|
|
+ fn Convert[self: Self]() -> (U1,) {
|
|
|
+ let (v1: T1,) = self;
|
|
|
+ return (v1.Convert(),);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ impl forall [U1:! type, U2:! type, T1:! As(U1), T2:! As(U2)]
|
|
|
+ (T1, T2) as As((U1, U2)) {
|
|
|
+ fn Convert[self: Self]() -> (U1, U2) {
|
|
|
+ let (v1: T1, v2: T2) = self;
|
|
|
+ return (v1.Convert(), v2.Convert());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ impl forall [U1:! type, U2:! type, U3:! type,
|
|
|
+ T1:! As(U1), T2:! As(U2), T3:! As(U3)]
|
|
|
+ (T1, T2, T3) as As((U1, U2, U3)) {
|
|
|
+ fn Convert[self: Self]() -> (U1, U2, U3) {
|
|
|
+ let (v1: T1, v2: T2, v3: T3) = self;
|
|
|
+ return (v1.Convert(), v2.Convert(), v3.Convert());
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// ----------------------
|