@stdlib/math-base-special-ceilsd 0.0.2 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +52 -3
- package/package.json +2 -2
- package/CHANGELOG.md +0 -5
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# ceilsd
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> Round a numeric value to the nearest number toward positive infinity with N significant figures.
|
|
26
26
|
|
|
@@ -99,6 +99,25 @@ for ( i = 0; i < 100; i++ ) {
|
|
|
99
99
|
|
|
100
100
|
<!-- /.examples -->
|
|
101
101
|
|
|
102
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
103
|
+
|
|
104
|
+
<section class="related">
|
|
105
|
+
|
|
106
|
+
* * *
|
|
107
|
+
|
|
108
|
+
## See Also
|
|
109
|
+
|
|
110
|
+
- <span class="package-name">[`@stdlib/math/base/special/ceil`][@stdlib/math/base/special/ceil]</span><span class="delimiter">: </span><span class="description">round a double-precision floating-point number toward positive infinity.</span>
|
|
111
|
+
- <span class="package-name">[`@stdlib/math/base/special/floorsd`][@stdlib/math/base/special/floorsd]</span><span class="delimiter">: </span><span class="description">round a numeric value to the nearest number toward negative infinity with N significant figures.</span>
|
|
112
|
+
- <span class="package-name">[`@stdlib/math/base/special/roundsd`][@stdlib/math/base/special/roundsd]</span><span class="delimiter">: </span><span class="description">round a numeric value to the nearest number with N significant figures.</span>
|
|
113
|
+
- <span class="package-name">[`@stdlib/math/base/special/truncsd`][@stdlib/math/base/special/truncsd]</span><span class="delimiter">: </span><span class="description">round a numeric value to the nearest number toward zero with N significant figures.</span>
|
|
114
|
+
|
|
115
|
+
</section>
|
|
116
|
+
|
|
117
|
+
<!-- /.related -->
|
|
118
|
+
|
|
119
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
120
|
+
|
|
102
121
|
|
|
103
122
|
<section class="main-repo" >
|
|
104
123
|
|
|
@@ -110,6 +129,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
|
|
|
110
129
|
|
|
111
130
|
For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib].
|
|
112
131
|
|
|
132
|
+
#### Community
|
|
133
|
+
|
|
134
|
+
[![Chat][chat-image]][chat-url]
|
|
135
|
+
|
|
113
136
|
---
|
|
114
137
|
|
|
115
138
|
## License
|
|
@@ -119,7 +142,7 @@ See [LICENSE][stdlib-license].
|
|
|
119
142
|
|
|
120
143
|
## Copyright
|
|
121
144
|
|
|
122
|
-
Copyright © 2016-
|
|
145
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
123
146
|
|
|
124
147
|
</section>
|
|
125
148
|
|
|
@@ -138,15 +161,41 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
138
161
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-special-ceilsd/main.svg
|
|
139
162
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-base-special-ceilsd?branch=main
|
|
140
163
|
|
|
141
|
-
|
|
164
|
+
<!--
|
|
165
|
+
|
|
166
|
+
[dependencies-image]: https://img.shields.io/david/stdlib-js/math-base-special-ceilsd.svg
|
|
142
167
|
[dependencies-url]: https://david-dm.org/stdlib-js/math-base-special-ceilsd/main
|
|
143
168
|
|
|
169
|
+
-->
|
|
170
|
+
|
|
171
|
+
[umd]: https://github.com/umdjs/umd
|
|
172
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
173
|
+
|
|
174
|
+
[deno-url]: https://github.com/stdlib-js/math-base-special-ceilsd/tree/deno
|
|
175
|
+
[umd-url]: https://github.com/stdlib-js/math-base-special-ceilsd/tree/umd
|
|
176
|
+
[esm-url]: https://github.com/stdlib-js/math-base-special-ceilsd/tree/esm
|
|
177
|
+
|
|
178
|
+
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
179
|
+
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
180
|
+
|
|
144
181
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
145
182
|
|
|
146
183
|
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
147
184
|
|
|
148
185
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/math-base-special-ceilsd/main/LICENSE
|
|
149
186
|
|
|
187
|
+
<!-- <related-links> -->
|
|
188
|
+
|
|
189
|
+
[@stdlib/math/base/special/ceil]: https://www.npmjs.com/package/@stdlib/math-base-special-ceil
|
|
190
|
+
|
|
191
|
+
[@stdlib/math/base/special/floorsd]: https://www.npmjs.com/package/@stdlib/math-base-special-floorsd
|
|
192
|
+
|
|
193
|
+
[@stdlib/math/base/special/roundsd]: https://www.npmjs.com/package/@stdlib/math-base-special-roundsd
|
|
194
|
+
|
|
195
|
+
[@stdlib/math/base/special/truncsd]: https://www.npmjs.com/package/@stdlib/math-base-special-truncsd
|
|
196
|
+
|
|
197
|
+
<!-- </related-links> -->
|
|
198
|
+
|
|
150
199
|
</section>
|
|
151
200
|
|
|
152
201
|
<!-- /.links -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/math-base-special-ceilsd",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Round a numeric value to the nearest number toward positive infinity with N significant figures.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"examples": "make examples",
|
|
29
29
|
"benchmark": "make benchmark"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://
|
|
31
|
+
"homepage": "https://stdlib.io",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
34
|
"url": "git://github.com/stdlib-js/math-base-special-ceilsd.git"
|