File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 163
163
Tests if this Long's value is odd.
164
164
165
165
* Long#** isPositive** (): ` boolean ` <br />
166
- Tests if this Long's value is positive.
166
+ Tests if this Long's value is positive or zero .
167
167
168
168
* Long#** isZero** /** eqz** (): ` boolean ` <br />
169
169
Tests if this Long's value equals zero.
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ declare class Long {
210
210
isOdd ( ) : boolean ;
211
211
212
212
/**
213
- * Tests if this Long's value is positive.
213
+ * Tests if this Long's value is positive or zero .
214
214
*/
215
215
isPositive ( ) : boolean ;
216
216
Original file line number Diff line number Diff line change @@ -599,7 +599,7 @@ LongPrototype.isNegative = function isNegative() {
599
599
} ;
600
600
601
601
/**
602
- * Tests if this Long's value is positive.
602
+ * Tests if this Long's value is positive or zero .
603
603
* @this {!Long}
604
604
* @returns {boolean }
605
605
*/
You can’t perform that action at this time.
0 commit comments