/// <inheritdoc /> public bool Equals(TupleStruct <T1, T2, T3, T4, T5, T6> other) => this.Item1.EqualsNullSafe(other.Item1) && this.Item2.EqualsNullSafe(other.Item2) && this.Item3.EqualsNullSafe(other.Item3) && this.Item4.EqualsNullSafe(other.Item4) && this.Item5.EqualsNullSafe(other.Item5) && this.Item6.EqualsNullSafe(other.Item6);
/// <inheritdoc /> public bool Equals(TupleStruct <T1, T2, T3> other) => this.Item1.EqualsNullSafe(other.Item1) && this.Item2.EqualsNullSafe(other.Item2) && this.Item3.EqualsNullSafe(other.Item3);
/// <inheritdoc /> public bool Equals(TupleStruct <T1> other) => this.Item1.EqualsNullSafe(other.Item1);