Fusion.Core.Mathematics.Half.operator C# (CSharp) Method

operator() public static method

Tests for equality between two objects.
public static operator ( ) : bool
return bool
        public static bool operator ==(Half left, Half right)
        {
            return left.value == right.value;
        }