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

◆ Equals() [1/8]

override readonly bool System.Numerics.Vector< T >.Equals ( [NotNullWhen(true)] object? obj)
inline

Definition at line 1023 of file Vector.cs.

1024 {
1025 if (obj is Vector<T> other)
1026 {
1027 return Equals(other);
1028 }
1029 return false;
1030 }
static Vector< int > Equals(Vector< float > left, Vector< float > right)
Definition Vector.cs:52

References System.Numerics.Vector< T >.Equals(), System.obj, and System.other.