Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Equals() [3/3]

bool System.Runtime.Intrinsics.Vector64< T >.Equals ( Vector64< T > other)
inline

Definition at line 638 of file Vector64.cs.

639 {
640 ThrowHelper.ThrowForUnsupportedIntrinsicsVectorBaseType<T>();
641 for (int i = 0; i < Count; i++)
642 {
643 if (!((IEquatable<T>)(object)this.GetElement(i)).Equals(other.GetElement(i)))
644 {
645 return false;
646 }
647 }
648 return true;
649 }

References System.Runtime.Intrinsics.Vector64< T >.Count, and System.other.

Referenced by System.Runtime.Intrinsics.Vector64< T >.Equals().