IEqualityOperators.cs 481 B

1234567891011
  1. // ReSharper disable once CheckNamespace
  2. namespace System.Numerics;
  3. /// <summary>
  4. /// Included for compatibility with .net7+, but has no members.
  5. /// Thus it cannot be explicitly used in generator code.
  6. /// Use it for static analysis only.
  7. /// </summary>
  8. /// <typeparam name="T">The left operand type.</typeparam>
  9. /// <typeparam name="T1">The right operand type.</typeparam>
  10. /// <typeparam name="T2">The return type.</typeparam>
  11. internal interface IEqualityOperators<T, T1, T2>;