public bool Equals(ref Half2 other) { return(X == other.X && Y == other.Y); }
public bool Equals(Half2 other) => Equals(ref other);