Ejemplo n.º 1
0
 private static Comparer <T> Create()
 {
     // The compiler will overwrite the Create method with optimized
     // instantiation-specific implementation.
     // This body serves as a fallback when instantiation-specific implementation is unavailable.
     return(_default = ComparerHelpers.GetUnknownComparer <T>());
 }
Ejemplo n.º 2
0
 private static Comparer <T> Create()
 {
     // The compiler will overwrite the Create method with optimized
     // instantiation-specific implementation.
     // This body serves as a fallback when instantiation-specific implementation is unavailable.
     Interlocked.CompareExchange(ref s_default, Unsafe.As <Comparer <T> >(ComparerHelpers.GetComparer(typeof(T).TypeHandle)), null);
     return(s_default);
 }
Ejemplo n.º 3
0
        private static Comparer <T> Create()
        {
#if PROJECTN
            // The compiler will overwrite the Create method with optimized
            // instantiation-specific implementation.
            throw new NotSupportedException();
#else
            // The compiler will overwrite the Create method with optimized
            // instantiation-specific implementation.
            // This body serves as a fallback when instantiation-specific implementation is unavailable.
            return(_default = ComparerHelpers.GetUnknownComparer <T>());
#endif
        }
Ejemplo n.º 4
0
 private static Comparer <T> Create()
 {
     // The compiler will overwrite the Create method with optimized
     // instantiation-specific implementation.
     // This body serves as a fallback when instantiation-specific implementation is unavailable.
     // If that happens, the compiler ensures we generate data structures to make the fallback work
     // when this method is compiled.
     Interlocked.CompareExchange(ref s_default,
                                 SupportsGenericIComparableInterfaces
         ? Unsafe.As <Comparer <T> >(ComparerHelpers.GetComparer(typeof(T).TypeHandle))
         : new ObjectComparer <T>(),
                                 null);
     return(s_default);
 }
Ejemplo n.º 5
0
 public sealed override int Compare(T x, T y)
 {
     return(ComparerHelpers.CompareObjects(x, y));
 }
Ejemplo n.º 6
0
 public override int Compare(T x, T y)
 {
     return(ComparerHelpers.EnumOnlyCompare(x, y));
 }