Skip to content

Commit f6be479

Browse files
committed
Auto-generated commit
1 parent 1fb44b5 commit f6be479

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The function handles [subnormals][subnormals].
8383
```javascript
8484
var toFloat32 = require( '@stdlib/number-float64-base-to-float32' );
8585

86-
str = toBinaryStringf( toFloat32( -3.14e-39 ) );
86+
var str = toBinaryStringf( toFloat32( -3.14e-39 ) );
8787
// returns '10000000001000100011000100001011'
8888

8989
str = toBinaryStringf( toFloat32( 1.4e-45 ) );
@@ -96,7 +96,7 @@ The function handles special values.
9696
var PINF = require( '@stdlib/constants-float32-pinf' );
9797
var NINF = require( '@stdlib/constants-float32-ninf' );
9898

99-
str = toBinaryStringf( 0.0 );
99+
var str = toBinaryStringf( 0.0 );
100100
// returns '00000000000000000000000000000000'
101101

102102
str = toBinaryStringf( -0.0 );
@@ -163,6 +163,13 @@ for ( i = 0; i < 100; i++ ) {
163163

164164
<section class="related">
165165

166+
* * *
167+
168+
## See Also
169+
170+
- <span class="package-name">[`@stdlib/number-float32/base/from-binary-string`][@stdlib/number/float32/base/from-binary-string]</span><span class="delimiter">: </span><span class="description">create a single-precision floating-point number from a literal bit representation.</span>
171+
- <span class="package-name">[`@stdlib/number-float64/base/to-binary-string`][@stdlib/number/float64/base/to-binary-string]</span><span class="delimiter">: </span><span class="description">return a string giving the literal bit representation of a double-precision floating-point number.</span>
172+
166173
</section>
167174

168175
<!-- /.related -->
@@ -240,6 +247,14 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
240247

241248
[subnormals]: https://en.wikipedia.org/wiki/Denormal_number
242249

250+
<!-- <related-links> -->
251+
252+
[@stdlib/number/float32/base/from-binary-string]: https://github.com/stdlib-js/number-float32-base-from-binary-string
253+
254+
[@stdlib/number/float64/base/to-binary-string]: https://github.com/stdlib-js/number-float64-base-to-binary-string
255+
256+
<!-- </related-links> -->
257+
243258
</section>
244259

245260
<!-- /.links -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
},
4949
"devDependencies": {
5050
"@stdlib/assert-is-string": "^0.1.1",
51-
"@stdlib/bench": "^0.1.0",
51+
"@stdlib/bench": "^0.2.0",
5252
"@stdlib/constants-float32-smallest-normal": "^0.1.1",
5353
"@stdlib/math-base-special-pow": "^0.1.0",
5454
"@stdlib/math-base-special-round": "^0.1.1",

0 commit comments

Comments
 (0)