Skip to content

Commit 4c15ac4

Browse files
committed
docs: update related packages sections
1 parent 4cf8ad7 commit 4c15ac4

File tree

4 files changed

+53
-2
lines changed

4 files changed

+53
-2
lines changed

lib/node_modules/@stdlib/array/convert-same/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,6 @@ for ( i = 0; i < DTYPES.length; i++ ) {
132132

133133
[@stdlib/array/convert]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/convert
134134

135-
[@stdlib/array/dtypes]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/dtypes
136-
137135
<!-- </related-links> -->
138136

139137
</section>

lib/node_modules/@stdlib/math/base/assert/is-nonnegative-finite/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,14 @@ int main( void ) {
179179

180180
<section class="related">
181181

182+
* * *
183+
184+
## See Also
185+
186+
- <span class="package-name">[`@stdlib/math/base/assert/is-negative-finite`][@stdlib/math/base/assert/is-negative-finite]</span><span class="delimiter">: </span><span class="description">test if a double-precision floating-point numeric value is a negative finite number.</span>
187+
- <span class="package-name">[`@stdlib/math/base/assert/is-positive-finite`][@stdlib/math/base/assert/is-positive-finite]</span><span class="delimiter">: </span><span class="description">test if a double-precision floating-point numeric value is a positive finite number.</span>
188+
- <span class="package-name">[`@stdlib/math/base/assert/is-nonpositive-finite`][@stdlib/math/base/assert/is-nonpositive-finite]</span><span class="delimiter">: </span><span class="description">test if a numeric value is a nonpositive finite number.</span>
189+
182190
</section>
183191

184192
<!-- /.related -->
@@ -189,6 +197,12 @@ int main( void ) {
189197

190198
<!-- <related-links> -->
191199

200+
[@stdlib/math/base/assert/is-negative-finite]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/assert/is-negative-finite
201+
202+
[@stdlib/math/base/assert/is-positive-finite]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/assert/is-positive-finite
203+
204+
[@stdlib/math/base/assert/is-nonpositive-finite]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/assert/is-nonpositive-finite
205+
192206
<!-- </related-links> -->
193207

194208
</section>

lib/node_modules/@stdlib/string/base/remove-first-code-point/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,14 @@ str = removeFirstCodePoint( 'अनुच्छेद', 1 );
8282

8383
<section class="related">
8484

85+
* * *
86+
87+
## See Also
88+
89+
- <span class="package-name">[`@stdlib/string/base/remove-last-code-point`][@stdlib/string/base/remove-last-code-point]</span><span class="delimiter">: </span><span class="description">remove the last Unicode code point of a string.</span>
90+
- <span class="package-name">[`@stdlib/string/base/remove-first-grapheme-cluster`][@stdlib/string/base/remove-first-grapheme-cluster]</span><span class="delimiter">: </span><span class="description">remove the first grapheme cluster (i.e., user-perceived character) of a string.</span>
91+
- <span class="package-name">[`@stdlib/string/base/remove-first`][@stdlib/string/base/remove-first]</span><span class="delimiter">: </span><span class="description">remove the first UTF-16 code unit of a string.</span>
92+
8593
</section>
8694

8795
<!-- /.related -->
@@ -90,6 +98,16 @@ str = removeFirstCodePoint( 'अनुच्छेद', 1 );
9098

9199
<section class="links">
92100

101+
<!-- <related-links> -->
102+
103+
[@stdlib/string/base/remove-last-code-point]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/remove-last-code-point
104+
105+
[@stdlib/string/base/remove-first-grapheme-cluster]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/remove-first-grapheme-cluster
106+
107+
[@stdlib/string/base/remove-first]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/remove-first
108+
109+
<!-- </related-links> -->
110+
93111
</section>
94112

95113
<!-- /.links -->

lib/node_modules/@stdlib/string/base/replace/README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,15 @@ out = replace( str, /([^\s]*)/gi, replacer );
9393

9494
<section class="related">
9595

96+
* * *
97+
98+
## See Also
99+
100+
- <span class="package-name">[`@stdlib/string/base/replace-after`][@stdlib/string/base/replace-after]</span><span class="delimiter">: </span><span class="description">replace the substring after the first occurrence of a specified search string.</span>
101+
- <span class="package-name">[`@stdlib/string/base/replace-before`][@stdlib/string/base/replace-before]</span><span class="delimiter">: </span><span class="description">replace the substring before the first occurrence of a specified search string.</span>
102+
- <span class="package-name">[`@stdlib/string/base/replace-after-last`][@stdlib/string/base/replace-after-last]</span><span class="delimiter">: </span><span class="description">replace the substring after the last occurrence of a specified search string.</span>
103+
- <span class="package-name">[`@stdlib/string/base/replace-before-last`][@stdlib/string/base/replace-before-last]</span><span class="delimiter">: </span><span class="description">replace the substring before the last occurrence of a specified search string.</span>
104+
96105
</section>
97106

98107
<!-- /.related -->
@@ -105,6 +114,18 @@ out = replace( str, /([^\s]*)/gi, replacer );
105114

106115
[mdn-regexp]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
107116

117+
<!-- <related-links> -->
118+
119+
[@stdlib/string/base/replace-after]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/replace-after
120+
121+
[@stdlib/string/base/replace-before]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/replace-before
122+
123+
[@stdlib/string/base/replace-after-last]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/replace-after-last
124+
125+
[@stdlib/string/base/replace-before-last]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/replace-before-last
126+
127+
<!-- </related-links> -->
128+
108129
</section>
109130

110131
<!-- /.links -->

0 commit comments

Comments
 (0)