(value)
| 54912 | return this; |
| 54913 | } |
| 54914 | addCount(value) { |
| 54915 | this._count += value; |
| 54916 | this._samples++; |
| 54917 | this._checkSampling(); |
| 54918 | return this; |
| 54919 | } |
| 54920 | subtractCount(value) { |
| 54921 | this._count -= value; |
| 54922 | this._samples++; |
no test coverage detected