Skip to content

Commit 1e78f7b

Browse files
committed
feat!: rename isIntegralDataType to isIntegerDataType
This change reflects updated convention to use "integer" to refer to both signed and unsigned integer dtypes. BREAKING CHANGE: rename `isIntegralDataType` to `isIntegerDataType` To migrate, users should update their usage accordingly.
1 parent d45a05b commit 1e78f7b

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/ndarray/base/assert/lib

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/ndarray/base/assert/lib/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -136,13 +136,13 @@ setReadOnly( ns, 'isFloatingPointDataType', require( '@stdlib/ndarray/base/asser
136136
setReadOnly( ns, 'isIndexMode', require( '@stdlib/ndarray/base/assert/is-index-mode' ) );
137137

138138
/**
139-
* @name isIntegralDataType
139+
* @name isIntegerDataType
140140
* @memberof ns
141141
* @readonly
142142
* @type {Function}
143-
* @see {@link module:@stdlib/ndarray/base/assert/is-integral-data-type}
143+
* @see {@link module:@stdlib/ndarray/base/assert/is-integer-data-type}
144144
*/
145-
setReadOnly( ns, 'isIntegralDataType', require( '@stdlib/ndarray/base/assert/is-integral-data-type' ) );
145+
setReadOnly( ns, 'isIntegerDataType', require( '@stdlib/ndarray/base/assert/is-integer-data-type' ) );
146146

147147
/**
148148
* @name isNumericDataType

0 commit comments

Comments
 (0)