@@ -32,7 +32,7 @@ public static partial class Operators<T>
32
32
private static class CompareHelper
33
33
{
34
34
[ 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 ) ;
36
36
37
37
/// <summary>
38
38
/// Gets a comparison function.
@@ -60,7 +60,7 @@ private static class CompareHelper
60
60
private static class NaNHelper
61
61
{
62
62
[ 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 ) ;
64
64
65
65
/// <summary>
66
66
/// Determines whether the type has NaN value.
@@ -93,7 +93,7 @@ private static class NaNHelper
93
93
private static class NegativeInfinityHelper
94
94
{
95
95
[ 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 ) ;
97
97
98
98
/// <summary>
99
99
/// Gets a value that determines whether the type has negative infinity value.
@@ -125,7 +125,7 @@ private static class NegativeInfinityHelper
125
125
private static class PositiveInfinityHelper
126
126
{
127
127
[ 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 ) ;
129
129
130
130
/// <summary>
131
131
/// Gets a value that determines whether the type has positive infinity value.
@@ -153,7 +153,7 @@ private static class OnesComplementHelper
153
153
/// The operator factory.
154
154
/// </summary>
155
155
[ 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 ) ;
157
157
158
158
/// <summary>
159
159
/// Returns the operator function.
0 commit comments