Skip to content

Commit 8c68825

Browse files
committed
Auto-generated commit
1 parent 22c3324 commit 8c68825

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-09-02)
7+
## Unreleased (2024-09-07)
88

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`a8b0d58`](https://github.com/stdlib-js/stdlib/commit/a8b0d5839361710233736f54e4b762f9381e8a3c) - **docs:** include `stdbool`, remove backticks in `math/base/assert/is-nonnegative-integerf` [(#2879)](https://github.com/stdlib-js/stdlib/pull/2879) _(by Gunj Joshi)_
2526
- [`d125530`](https://github.com/stdlib-js/stdlib/commit/d125530c01e76a5f6f0b093f422e403dbc3a03e2) - **feat:** add `math/base/assert/is-nonnegative-integerf` [(#2851)](https://github.com/stdlib-js/stdlib/pull/2851) _(by Gunj Joshi)_
2627

2728
</details>

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
2626
Frank Kovacs <fran70kk@gmail.com>
2727
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
2828
Gunj Joshi <gunjjoshi8372@gmail.com>
29+
HarshaNP <96897754+GittyHarsha@users.noreply.github.com>
2930
Harshita Kalani <harshitakalani02@gmail.com>
3031
Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com>
3132
Jaimin Godhani <112328542+Jai0401@users.noreply.github.com>
@@ -96,3 +97,4 @@ nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
9697
orimiles5 <97595296+orimiles5@users.noreply.github.com>
9798
rainn <88160429+AmCodesLame@users.noreply.github.com>
9899
rei2hu <reimu@reimu.ws>
100+
yaswanth <116426380+yaswanthkosuru@users.noreply.github.com>

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ var isNonNegativeIntegerf = require( '@stdlib/math-base-assert-is-nonnegative-in
6565

6666
#### isNonNegativeIntegerf( x )
6767

68-
Tests if a finite [single-precision floating-point number][ieee754] is a nonnegative `integer`.
68+
Tests if a finite [single-precision floating-point number][ieee754] is a nonnegative integer.
6969

7070
```javascript
7171
var bool = isNonNegativeIntegerf( 1.0 );
@@ -86,7 +86,7 @@ bool = isNonNegativeIntegerf( -10.0 );
8686

8787
## Notes
8888

89-
- The function assumes a **finite** `number`. If provided positive `infinity`, the function will return `true`, when, in fact, the result is undefined. If `x` can be `infinite`, wrap the implementation as follows:
89+
- The function assumes a **finite** number. If provided positive `infinity`, the function will return `true`, when, in fact, the result is undefined. If `x` can be `infinite`, wrap the implementation as follows:
9090

9191
```javascript
9292
function check( x ) {
@@ -174,6 +174,8 @@ bool = isNonNegativeIntegerf( NaN );
174174
Tests if a finite [single-precision floating-point number][ieee754] is a nonnegative integer.
175175

176176
```c
177+
#include <stdbool.h>
178+
177179
bool out = stdlib_base_is_nonnegative_integerf( 1.0f );
178180
// returns true
179181

0 commit comments

Comments
 (0)