@stdlib/utils
Version:
Standard utilities.
215 lines (127 loc) • 4.62 kB
Markdown
<!--
@license Apache-2.0
Copyright (c) 2018 The Stdlib Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
# typemax
> Return the maximum value of a specified numeric type.
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
<section class="intro">
</section>
<!-- /.intro -->
<!-- Package usage documentation. -->
<section class="usage">
## Usage
```javascript
var typemax = require( '@stdlib/utils/type-max' );
```
#### typemax( dtype )
Returns the maximum value of a specified numeric type.
```javascript
var m = typemax( 'int8' );
// returns 127
```
The following numeric types are supported:
- `float64`: double-precision floating-point numbers
- `float32`: single-precision floating-point numbers
- `float16`: half-precision floating-point numbers
- `int32`: 32-bit two's complement signed integers
- `uint32`: 32-bit unsigned integers
- `int16`: 16-bit two's complement signed integers
- `uint16`: 16-bit unsigned integers
- `int8`: 8-bit two's complement signed integers
- `uint8`: 8-bit unsigned integers
- `uint8c`: 8-bit unsigned integers clamped to `0-255`
</section>
<!-- /.usage -->
<!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
<section class="notes">
</section>
<!-- /.notes -->
<!-- Package usage examples. -->
<section class="examples">
## Examples
<!-- eslint no-undef: "error" -->
```javascript
var typemax = require( '@stdlib/utils/type-max' );
var m = typemax( 'float64' );
// returns Infinity
m = typemax( 'float32' );
// returns Infinity
m = typemax( 'float16' );
// returns Infinity
m = typemax( 'int32' );
// returns 2147483647
m = typemax( 'uint32' );
// returns 4294967295
m = typemax( 'int16' );
// returns 32767
m = typemax( 'uint16' );
// returns 65535
m = typemax( 'int8' );
// returns 127
m = typemax( 'uint8' );
// returns 255
m = typemax( 'uint8c' );
// returns 255
```
</section>
<!-- /.examples -->
<!-- Section for describing a command-line interface. -->
* * *
<section class="cli">
## CLI
<!-- CLI usage documentation. -->
<section class="usage">
### Usage
```text
Usage: typemax [options] <dtype>
Options:
-h, --help Print this message.
-V, --version Print the package version.
```
</section>
<!-- /.usage -->
<!-- CLI usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
<section class="notes">
</section>
<!-- /.notes -->
<!-- CLI usage examples. -->
<section class="examples">
### Examples
```bash
$ typemax int16
32767
```
</section>
<!-- /.examples -->
</section>
<!-- /.cli -->
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
<section class="references">
</section>
<!-- /.references -->
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
<section class="related">
* * *
## See Also
- <span class="package-name">[`@stdlib/utils/real-max`][@stdlib/utils/real-max]</span><span class="delimiter">: </span><span class="description">return the maximum finite value capable of being represented by a numeric real type.</span>
- <span class="package-name">[`@stdlib/utils/type-min`][@stdlib/utils/type-min]</span><span class="delimiter">: </span><span class="description">return the minimum value of a specified numeric type.</span>
</section>
<!-- /.related -->
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
<section class="links">
<!-- <related-links> -->
[@stdlib/utils/real-max]: https://github.com/stdlib-js/utils/tree/main/real-max
[@stdlib/utils/type-min]: https://github.com/stdlib-js/utils/tree/main/type-min
<!-- </related-links> -->
</section>
<!-- /.links -->