@@ -32,7 +32,7 @@ public static partial class Operators<T>
3232 private static class CompareHelper
3333 {
3434 [ NotNull , ItemNotNull ]
35- private static readonly Lazy < Func < T , T , int > > _value = new Lazy < Func < T , T , int > > ( OperatorsFactory . Comparison < T > , _lazyMode ) ;
35+ private static readonly Lazy < Func < T , T , int > > _value = new ( OperatorsFactory . Comparison < T > , _lazyMode ) ;
3636
3737 /// <summary>
3838 /// Gets a comparison function.
@@ -60,7 +60,7 @@ private static class CompareHelper
6060 private static class NaNHelper
6161 {
6262 [ NotNull , ItemNotNull ]
63- private static readonly Lazy < T > _value = new Lazy < T > ( OperatorsFactory . GetNaN < T > , _lazyMode ) ;
63+ private static readonly Lazy < T > _value = new ( OperatorsFactory . GetNaN < T > , _lazyMode ) ;
6464
6565 /// <summary>
6666 /// Determines whether the type has NaN value.
@@ -93,7 +93,7 @@ private static class NaNHelper
9393 private static class NegativeInfinityHelper
9494 {
9595 [ NotNull , ItemNotNull ]
96- private static readonly Lazy < T > _value = new Lazy < T > ( OperatorsFactory . GetNegativeInfinity < T > , _lazyMode ) ;
96+ private static readonly Lazy < T > _value = new ( OperatorsFactory . GetNegativeInfinity < T > , _lazyMode ) ;
9797
9898 /// <summary>
9999 /// Gets a value that determines whether the type has negative infinity value.
@@ -125,7 +125,7 @@ private static class NegativeInfinityHelper
125125 private static class PositiveInfinityHelper
126126 {
127127 [ NotNull , ItemNotNull ]
128- private static readonly Lazy < T > _value = new Lazy < T > ( OperatorsFactory . GetPositiveInfinity < T > , _lazyMode ) ;
128+ private static readonly Lazy < T > _value = new ( OperatorsFactory . GetPositiveInfinity < T > , _lazyMode ) ;
129129
130130 /// <summary>
131131 /// Gets a value that determines whether the type has positive infinity value.
@@ -153,7 +153,7 @@ private static class OnesComplementHelper
153153 /// The operator factory.
154154 /// </summary>
155155 [ NotNull , ItemNotNull ]
156- public static readonly Lazy < Func < T , T > > LazyValue = new Lazy < Func < T , T > > ( CreateValue , _lazyMode ) ;
156+ public static readonly Lazy < Func < T , T > > LazyValue = new ( CreateValue , _lazyMode ) ;
157157
158158 /// <summary>
159159 /// Returns the operator function.
0 commit comments