/// <summary>
 /// Append an extra item to the tuple
 /// </summary>
 public static Tuple <T1, T2, T3> append <T1, T2, T3>(Tuple <T1, T2> self, T3 third) =>
 self.Append(third);