@@ -121,6 +121,34 @@ func BenchmarkDecimal_RoundCash_Five(b *testing.B) {
121
121
}
122
122
}
123
123
124
+ func numDigits (b * testing.B , want int , val Decimal ) {
125
+ b .Helper ()
126
+ for i := 0 ; i < b .N ; i ++ {
127
+ if have := val .NumDigits (); have != want {
128
+ b .Fatalf ("\n Have: %d\n Want: %d" , have , want )
129
+ }
130
+ }
131
+ }
132
+
133
+ func BenchmarkDecimal_NumDigits10 (b * testing.B ) {
134
+ numDigits (b , 10 , New (3478512345 , - 3 ))
135
+ }
136
+
137
+ func BenchmarkDecimal_NumDigits100 (b * testing.B ) {
138
+ s := make ([]byte , 102 )
139
+ for i := range s {
140
+ s [i ] = byte ('0' + i % 10 )
141
+ }
142
+ s [0 ] = '-'
143
+ s [100 ] = '.'
144
+ d , err := NewFromString (string (s ))
145
+ if err != nil {
146
+ b .Log (d )
147
+ b .Error (err )
148
+ }
149
+ numDigits (b , 100 , d )
150
+ }
151
+
124
152
func Benchmark_Cmp (b * testing.B ) {
125
153
decimals := DecimalSlice ([]Decimal {})
126
154
for i := 0 ; i < 1000000 ; i ++ {
@@ -132,7 +160,7 @@ func Benchmark_Cmp(b *testing.B) {
132
160
}
133
161
}
134
162
135
- func Benchmark_decimal_Decimal_Add_different_precision (b * testing.B ) {
163
+ func BenchmarkDecimal_Add_different_precision (b * testing.B ) {
136
164
d1 := NewFromFloat (1000.123 )
137
165
d2 := NewFromFloat (500 ).Mul (NewFromFloat (0.12 ))
138
166
@@ -143,7 +171,7 @@ func Benchmark_decimal_Decimal_Add_different_precision(b *testing.B) {
143
171
}
144
172
}
145
173
146
- func Benchmark_decimal_Decimal_Sub_different_precision (b * testing.B ) {
174
+ func BenchmarkDecimal_Sub_different_precision (b * testing.B ) {
147
175
d1 := NewFromFloat (1000.123 )
148
176
d2 := NewFromFloat (500 ).Mul (NewFromFloat (0.12 ))
149
177
@@ -154,7 +182,7 @@ func Benchmark_decimal_Decimal_Sub_different_precision(b *testing.B) {
154
182
}
155
183
}
156
184
157
- func Benchmark_decimal_Decimal_Add_same_precision (b * testing.B ) {
185
+ func BenchmarkDecimal_Add_same_precision (b * testing.B ) {
158
186
d1 := NewFromFloat (1000.123 )
159
187
d2 := NewFromFloat (500.123 )
160
188
@@ -165,7 +193,7 @@ func Benchmark_decimal_Decimal_Add_same_precision(b *testing.B) {
165
193
}
166
194
}
167
195
168
- func Benchmark_decimal_Decimal_Sub_same_precision (b * testing.B ) {
196
+ func BenchmarkDecimal_Sub_same_precision (b * testing.B ) {
169
197
d1 := NewFromFloat (1000.123 )
170
198
d2 := NewFromFloat (500.123 )
171
199
0 commit comments