func == ((), ()) -> Bool
Returns a Boolean value indicating whether the corresponding components of two tuples are equal.
2つのタプルの対応する構成要素らが等しいかどうかを指し示すブール値を返します。
func == <A, B>((A, B), (A, B)) -> Bool
Returns a Boolean value indicating whether the corresponding components of two tuples are equal.
2つのタプルの対応する構成要素らが等しいかどうかを指し示すブール値を返します。
func == <A, B, C>((A, B, C), (A, B, C)) -> Bool
Returns a Boolean value indicating whether the corresponding components of two tuples are equal.
2つのタプルの対応する構成要素らが等しいかどうかを指し示すブール値を返します。
func == <A, B, C, D>((A, B, C, D), (A, B, C, D)) -> Bool
Returns a Boolean value indicating whether the corresponding components of two tuples are equal.
2つのタプルの対応する構成要素らが等しいかどうかを指し示すブール値を返します。
func == <A, B, C, D, E>((A, B, C, D, E), (A, B, C, D, E)) -> Bool
Returns a Boolean value indicating whether the corresponding components of two tuples are equal.
2つのタプルの対応する構成要素らが等しいかどうかを指し示すブール値を返します。
func == <A, B, C, D, E, F>((A, B, C, D, E, F), (A, B, C, D, E, F)) -> Bool
Returns a Boolean value indicating whether the corresponding components of two tuples are equal.
2つのタプルの対応する構成要素らが等しいかどうかを指し示すブール値を返します。
func != ((), ()) -> Bool
Returns a Boolean value indicating whether any corresponding components of the two tuples are not equal.
2つのタプルの対応する構成要素いずれかが等しくないかどうかを指し示すブール値を返します。
func != <A, B>((A, B), (A, B)) -> Bool
Returns a Boolean value indicating whether any corresponding components of the two tuples are not equal.
2つのタプルの対応する構成要素いずれかが等しくないかどうかを指し示すブール値を返します。
func != <A, B, C>((A, B, C), (A, B, C)) -> Bool
Returns a Boolean value indicating whether any corresponding components of the two tuples are not equal.
2つのタプルの対応する構成要素いずれかが等しくないかどうかを指し示すブール値を返します。
func != <A, B, C, D, E>((A, B, C, D, E), (A, B, C, D, E)) -> Bool
Returns a Boolean value indicating whether any corresponding components of the two tuples are not equal.
2つのタプルの対応する構成要素いずれかが等しくないかどうかを指し示すブール値を返します。
func != <A, B, C, D, E, F>((A, B, C, D, E, F), (A, B, C, D, E, F)) -> Bool
Returns a Boolean value indicating whether any corresponding components of the two tuples are not equal.
2つのタプルの対応する構成要素いずれかが等しくないかどうかを指し示すブール値を返します。