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