Skip to content

Commit

Permalink
feat: add Float64ArrayLE, Float32ArrayLE, Float64ArrayFE, and `…
Browse files Browse the repository at this point in the history
…Float32ArrayFE` to namespace
  • Loading branch information
kgryte committed Sep 27, 2024
1 parent fbe6651 commit 254fa9e
Show file tree
Hide file tree
Showing 28 changed files with 366 additions and 282 deletions.
4 changes: 4 additions & 0 deletions lib/node_modules/@stdlib/namespace/alias2pkg/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,8 @@ FLOAT32_SMALLEST_SUBNORMAL,"@stdlib/constants/float32/smallest-subnormal"
FLOAT32_SQRT_EPS,"@stdlib/constants/float32/sqrt-eps"
FLOAT32_TWO_PI,"@stdlib/constants/float32/two-pi"
Float32Array,"@stdlib/array/float32"
Float32ArrayFE,"@stdlib/array/fixed-endian-float32"
Float32ArrayLE,"@stdlib/array/little-endian-float32"
FLOAT64_EXPONENT_BIAS,"@stdlib/constants/float64/exponent-bias"
FLOAT64_HIGH_WORD_ABS_MASK,"@stdlib/constants/float64/high-word-abs-mask"
FLOAT64_HIGH_WORD_EXPONENT_MASK,"@stdlib/constants/float64/high-word-exponent-mask"
Expand Down Expand Up @@ -1711,6 +1713,8 @@ FLOAT64_PRECISION,"@stdlib/constants/float64/precision"
FLOAT64_SMALLEST_NORMAL,"@stdlib/constants/float64/smallest-normal"
FLOAT64_SMALLEST_SUBNORMAL,"@stdlib/constants/float64/smallest-subnormal"
Float64Array,"@stdlib/array/float64"
Float64ArrayFE,"@stdlib/array/fixed-endian-float64"
Float64ArrayLE,"@stdlib/array/little-endian-float64"
forEach,"@stdlib/utils/for-each"
forEachAsync,"@stdlib/utils/async/for-each"
forEachChar,"@stdlib/string/for-each"
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,8 @@ FLOAT32_SMALLEST_SUBNORMAL,"FLOAT32_SMALLEST_NORMAL,FLOAT64_SMALLEST_SUBNORMAL"
FLOAT32_SQRT_EPS,"FLOAT32_EPS,SQRT_EPS"
FLOAT32_TWO_PI,"FLOAT32_FOURTH_PI,FLOAT32_HALF_PI,FLOAT32_PI"
Float32Array,"ArrayBuffer,Float64Array,Int16Array,Int32Array,Int8Array,Uint16Array,Uint32Array,Uint8Array,Uint8ClampedArray"
Float32ArrayFE,"Float64ArrayFE,Float32Array"
Float32ArrayLE,"Float32ArrayFE,Float32Array,Float64ArrayLE"
FLOAT64_EXPONENT_BIAS,"FLOAT16_EXPONENT_BIAS,FLOAT32_EXPONENT_BIAS"
FLOAT64_HIGH_WORD_ABS_MASK,"FLOAT64_HIGH_WORD_SIGN_MASK,FLOAT64_HIGH_WORD_EXPONENT_MASK,FLOAT64_HIGH_WORD_SIGNIFICAND_MASK"
FLOAT64_HIGH_WORD_EXPONENT_MASK,"FLOAT64_HIGH_WORD_SIGNIFICAND_MASK,FLOAT64_HIGH_WORD_SIGN_MASK,FLOAT64_HIGH_WORD_ABS_MASK"
Expand Down Expand Up @@ -1711,6 +1713,8 @@ FLOAT64_PRECISION,"FLOAT16_PRECISION,FLOAT32_PRECISION"
FLOAT64_SMALLEST_NORMAL,"FLOAT32_SMALLEST_NORMAL,FLOAT64_SMALLEST_SUBNORMAL"
FLOAT64_SMALLEST_SUBNORMAL,"FLOAT32_SMALLEST_SUBNORMAL,FLOAT64_SMALLEST_NORMAL"
Float64Array,"ArrayBuffer,Float32Array,Int16Array,Int32Array,Int8Array,Uint16Array,Uint32Array,Uint8Array,Uint8ClampedArray"
Float64ArrayFE,"Float32ArrayFE,Float64Array"
Float64ArrayLE,"Float64ArrayFE,Float64Array,Float32ArrayLE"
forEach,"forEachAsync,forEachRight"
forEachAsync,"forEach,forEachRightAsync"
forEachChar,"forEach"
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,8 @@ FLOAT32_SMALLEST_SUBNORMAL,"@stdlib/constants-float32-smallest-subnormal"
FLOAT32_SQRT_EPS,"@stdlib/constants-float32-sqrt-eps"
FLOAT32_TWO_PI,"@stdlib/constants-float32-two-pi"
Float32Array,"@stdlib/array-float32"
Float32ArrayFE,"@stdlib/array-fixed-endian-float32"
Float32ArrayLE,"@stdlib/array-little-endian-float32"
FLOAT64_EXPONENT_BIAS,"@stdlib/constants-float64-exponent-bias"
FLOAT64_HIGH_WORD_ABS_MASK,"@stdlib/constants-float64-high-word-abs-mask"
FLOAT64_HIGH_WORD_EXPONENT_MASK,"@stdlib/constants-float64-high-word-exponent-mask"
Expand Down Expand Up @@ -1711,6 +1713,8 @@ FLOAT64_PRECISION,"@stdlib/constants-float64-precision"
FLOAT64_SMALLEST_NORMAL,"@stdlib/constants-float64-smallest-normal"
FLOAT64_SMALLEST_SUBNORMAL,"@stdlib/constants-float64-smallest-subnormal"
Float64Array,"@stdlib/array-float64"
Float64ArrayFE,"@stdlib/array-fixed-endian-float64"
Float64ArrayLE,"@stdlib/array-little-endian-float64"
forEach,"@stdlib/utils-for-each"
forEachAsync,"@stdlib/utils-async-for-each"
forEachChar,"@stdlib/string-for-each"
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/namespace/aliases/data/data.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions lib/node_modules/@stdlib/namespace/aliases/data/data.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,8 @@ FLOAT32_SMALLEST_SUBNORMAL
FLOAT32_SQRT_EPS
FLOAT32_TWO_PI
Float32Array
Float32ArrayFE
Float32ArrayLE
FLOAT64_EXPONENT_BIAS
FLOAT64_HIGH_WORD_ABS_MASK
FLOAT64_HIGH_WORD_EXPONENT_MASK
Expand Down Expand Up @@ -1711,6 +1713,8 @@ FLOAT64_PRECISION
FLOAT64_SMALLEST_NORMAL
FLOAT64_SMALLEST_SUBNORMAL
Float64Array
Float64ArrayFE
Float64ArrayLE
forEach
forEachAsync
forEachChar
Expand Down
48 changes: 48 additions & 0 deletions lib/node_modules/@stdlib/namespace/lib/namespace/f.js
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,30 @@ ns.push({
]
});

ns.push({
'alias': 'Float32ArrayFE',
'path': '@stdlib/array/fixed-endian-float32',
'value': require( '@stdlib/array/fixed-endian-float32' ),
'type': 'Function',
'related': [
'@stdlib/array/fixed-endian-float64',
'@stdlib/array/float32'
]
});

ns.push({
'alias': 'Float32ArrayLE',
'path': '@stdlib/array/little-endian-float32',
'value': require( '@stdlib/array/little-endian-float32' ),
'type': 'Function',
'related': [
'@stdlib/array/big-endian-float32',
'@stdlib/array/fixed-endian-float32',
'@stdlib/array/float32',
'@stdlib/array/little-endian-float64'
]
});

ns.push({
'alias': 'FLOAT64_EXPONENT_BIAS',
'path': '@stdlib/constants/float64/exponent-bias',
Expand Down Expand Up @@ -1011,6 +1035,30 @@ ns.push({
]
});

ns.push({
'alias': 'Float64ArrayFE',
'path': '@stdlib/array/fixed-endian-float64',
'value': require( '@stdlib/array/fixed-endian-float64' ),
'type': 'Function',
'related': [
'@stdlib/array/fixed-endian-float32',
'@stdlib/array/float64'
]
});

ns.push({
'alias': 'Float64ArrayLE',
'path': '@stdlib/array/little-endian-float64',
'value': require( '@stdlib/array/little-endian-float64' ),
'type': 'Function',
'related': [
'@stdlib/array/big-endian-float64',
'@stdlib/array/fixed-endian-float64',
'@stdlib/array/float64',
'@stdlib/array/little-endian-float32'
]
});

ns.push({
'alias': 'forEach',
'path': '@stdlib/utils/for-each',
Expand Down
4 changes: 4 additions & 0 deletions lib/node_modules/@stdlib/namespace/pkg2alias/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,8 @@
"@stdlib/constants/float32/sqrt-eps",FLOAT32_SQRT_EPS
"@stdlib/constants/float32/two-pi",FLOAT32_TWO_PI
"@stdlib/array/float32",Float32Array
"@stdlib/array/fixed-endian-float32",Float32ArrayFE
"@stdlib/array/little-endian-float32",Float32ArrayLE
"@stdlib/constants/float64/exponent-bias",FLOAT64_EXPONENT_BIAS
"@stdlib/constants/float64/high-word-abs-mask",FLOAT64_HIGH_WORD_ABS_MASK
"@stdlib/constants/float64/high-word-exponent-mask",FLOAT64_HIGH_WORD_EXPONENT_MASK
Expand Down Expand Up @@ -1711,6 +1713,8 @@
"@stdlib/constants/float64/smallest-normal",FLOAT64_SMALLEST_NORMAL
"@stdlib/constants/float64/smallest-subnormal",FLOAT64_SMALLEST_SUBNORMAL
"@stdlib/array/float64",Float64Array
"@stdlib/array/fixed-endian-float64",Float64ArrayFE
"@stdlib/array/little-endian-float64",Float64ArrayLE
"@stdlib/utils/for-each",forEach
"@stdlib/utils/async/for-each",forEachAsync
"@stdlib/string/for-each",forEachChar
Expand Down

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions lib/node_modules/@stdlib/namespace/pkg2related/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,8 @@
"@stdlib/constants/float32/sqrt-eps","@stdlib/constants/float32/eps,@stdlib/constants/float64/sqrt-eps"
"@stdlib/constants/float32/two-pi","@stdlib/constants/float32/fourth-pi,@stdlib/constants/float32/half-pi,@stdlib/constants/float32/pi"
"@stdlib/array/float32","@stdlib/array/buffer,@stdlib/array/float64,@stdlib/array/int16,@stdlib/array/int32,@stdlib/array/int8,@stdlib/array/uint16,@stdlib/array/uint32,@stdlib/array/uint8,@stdlib/array/uint8c"
"@stdlib/array/fixed-endian-float32","@stdlib/array/fixed-endian-float64,@stdlib/array/float32"
"@stdlib/array/little-endian-float32","@stdlib/array/fixed-endian-float32,@stdlib/array/float32,@stdlib/array/little-endian-float64"
"@stdlib/constants/float64/exponent-bias","@stdlib/constants/float16/exponent-bias,@stdlib/constants/float32/exponent-bias"
"@stdlib/constants/float64/high-word-abs-mask","@stdlib/constants/float64/high-word-sign-mask,@stdlib/constants/float64/high-word-exponent-mask,@stdlib/constants/float64/high-word-significand-mask"
"@stdlib/constants/float64/high-word-exponent-mask","@stdlib/constants/float64/high-word-significand-mask,@stdlib/constants/float64/high-word-sign-mask,@stdlib/constants/float64/high-word-abs-mask"
Expand Down Expand Up @@ -1711,6 +1713,8 @@
"@stdlib/constants/float64/smallest-normal","@stdlib/constants/float32/smallest-normal,@stdlib/constants/float64/smallest-subnormal"
"@stdlib/constants/float64/smallest-subnormal","@stdlib/constants/float32/smallest-subnormal,@stdlib/constants/float64/smallest-normal"
"@stdlib/array/float64","@stdlib/array/buffer,@stdlib/array/float32,@stdlib/array/int16,@stdlib/array/int32,@stdlib/array/int8,@stdlib/array/uint16,@stdlib/array/uint32,@stdlib/array/uint8,@stdlib/array/uint8c"
"@stdlib/array/fixed-endian-float64","@stdlib/array/fixed-endian-float32,@stdlib/array/float64"
"@stdlib/array/little-endian-float64","@stdlib/array/fixed-endian-float64,@stdlib/array/float64,@stdlib/array/little-endian-float32"
"@stdlib/utils/for-each","@stdlib/utils/async/for-each,@stdlib/utils/for-each-right"
"@stdlib/utils/async/for-each","@stdlib/utils/for-each,@stdlib/utils/async/for-each-right"
"@stdlib/string/for-each","@stdlib/utils/for-each"
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,8 @@
"@stdlib/constants/float32/sqrt-eps","@stdlib/constants-float32-sqrt-eps"
"@stdlib/constants/float32/two-pi","@stdlib/constants-float32-two-pi"
"@stdlib/array/float32","@stdlib/array-float32"
"@stdlib/array/fixed-endian-float32","@stdlib/array-fixed-endian-float32"
"@stdlib/array/little-endian-float32","@stdlib/array-little-endian-float32"
"@stdlib/constants/float64/exponent-bias","@stdlib/constants-float64-exponent-bias"
"@stdlib/constants/float64/high-word-abs-mask","@stdlib/constants-float64-high-word-abs-mask"
"@stdlib/constants/float64/high-word-exponent-mask","@stdlib/constants-float64-high-word-exponent-mask"
Expand Down Expand Up @@ -1711,6 +1713,8 @@
"@stdlib/constants/float64/smallest-normal","@stdlib/constants-float64-smallest-normal"
"@stdlib/constants/float64/smallest-subnormal","@stdlib/constants-float64-smallest-subnormal"
"@stdlib/array/float64","@stdlib/array-float64"
"@stdlib/array/fixed-endian-float64","@stdlib/array-fixed-endian-float64"
"@stdlib/array/little-endian-float64","@stdlib/array-little-endian-float64"
"@stdlib/utils/for-each","@stdlib/utils-for-each"
"@stdlib/utils/async/for-each","@stdlib/utils-async-for-each"
"@stdlib/string/for-each","@stdlib/string-for-each"
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,8 @@
"@stdlib/constants-float32-sqrt-eps","@stdlib/constants/float32/sqrt-eps"
"@stdlib/constants-float32-two-pi","@stdlib/constants/float32/two-pi"
"@stdlib/array-float32","@stdlib/array/float32"
"@stdlib/array-fixed-endian-float32","@stdlib/array/fixed-endian-float32"
"@stdlib/array-little-endian-float32","@stdlib/array/little-endian-float32"
"@stdlib/constants-float64-exponent-bias","@stdlib/constants/float64/exponent-bias"
"@stdlib/constants-float64-high-word-abs-mask","@stdlib/constants/float64/high-word-abs-mask"
"@stdlib/constants-float64-high-word-exponent-mask","@stdlib/constants/float64/high-word-exponent-mask"
Expand Down Expand Up @@ -1711,6 +1713,8 @@
"@stdlib/constants-float64-smallest-normal","@stdlib/constants/float64/smallest-normal"
"@stdlib/constants-float64-smallest-subnormal","@stdlib/constants/float64/smallest-subnormal"
"@stdlib/array-float64","@stdlib/array/float64"
"@stdlib/array-fixed-endian-float64","@stdlib/array/fixed-endian-float64"
"@stdlib/array-little-endian-float64","@stdlib/array/little-endian-float64"
"@stdlib/utils-for-each","@stdlib/utils/for-each"
"@stdlib/utils-async-for-each","@stdlib/utils/async/for-each"
"@stdlib/string-for-each","@stdlib/string/for-each"
Expand Down

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions lib/node_modules/@stdlib/repl/code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2431,8 +2431,8 @@ base.strided.ssort2sh,"var x = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nva
base.strided.ssort2sh.ndarray,"var x = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nvar y = new Float32Array( [ 0.0, 1.0, 2.0, 3.0 ] );\nbase.strided.ssort2sh.ndarray( x.length, 1, x, 1, 0, y, 1, 0 )\ny\nx = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\ny = new Float32Array( [ 0.0, 1.0, 2.0, 3.0 ] );\nvar N = base.floor( x.length / 2 );\nbase.strided.ssort2sh.ndarray( N, 1, x, 2, 1, y, 2, 1 )\ny\n"
base.strided.ssorthp,"var x = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssorthp( x.length, 1, x, 1 )\nx = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssorthp( 2, -1, x, 2 )\nvar x0 = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nvar x1 = new Float32Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nbase.strided.ssorthp( 2, 1, x1, 2 )\nx0\n"
base.strided.ssorthp.ndarray,"var x = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssorthp.ndarray( x.length, 1, x, 1, 0 )\nx = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssorthp.ndarray( 2, 1, x, 2, 1 )\n"
base.strided.ssortins,"var x = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssortins( x.length, 1, x, 1 )\nx = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nvar N = base.floor( x.length / 2 );\nbase.strided.ssortins( N, -1, x, 2 )\nvar x0 = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nvar x1 = new Float32Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nN = base.floor( x0.length / 2 );\nbase.strided.ssortins( N, 1, x1, 2 )\nx0\n"
base.strided.ssortins.ndarray,"var x = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssortins.ndarray( x.length, 1, x, 1, 0 )\nx = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nvar N = base.floor( x.length / 2 );\nbase.strided.ssortins.ndarray( N, 1, x, 2, 1 )\n"
base.strided.ssortins,"var x = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssortins( x.length, 1, x, 1 )\nx = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssortins( 2, -1, x, 2 )\nvar x0 = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nvar x1 = new Float32Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nbase.strided.ssortins( 2, 1, x1, 2 )\nx0\n"
base.strided.ssortins.ndarray,"var x = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssortins.ndarray( x.length, 1, x, 1, 0 )\nx = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssortins.ndarray( 2, 1, x, 2, 1 )\n"
base.strided.ssortsh,"var x = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssortsh( x.length, 1, x, 1 )\nx = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssortsh( 2, -1, x, 2 )\nvar x0 = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nvar x1 = new Float32Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nbase.strided.ssortsh( 2, 1, x1, 2 )\nx0\n"
base.strided.ssortsh.ndarray,"var x = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssortsh.ndarray( x.length, 1, x, 1, 0 )\nx = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] );\nbase.strided.ssortsh.ndarray( 2, 1, x, 2, 1 )\n"
base.strided.ssqrt,"var x = new Float32Array( [ 0.0, 4.0, 9.0, 12.0 ] );\nvar y = new Float32Array( [ 0.0, 0.0, 0.0, 0.0 ] );\nbase.strided.ssqrt( x.length, x, 1, y, 1 )\nvar N = base.floor( x.length / 2 );\ny = new Float32Array( [ 0.0, 0.0, 0.0, 0.0 ] );\nbase.strided.ssqrt( N, x, 2, y, -1 )\nvar x0 = new Float32Array( [ 0.0, 4.0, 9.0, 12.0 ] );\nvar y0 = new Float32Array( [ 0.0, 0.0, 0.0, 0.0 ] );\nvar x1 = new Float32Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nvar y1 = new Float32Array( y0.buffer, y0.BYTES_PER_ELEMENT*2 );\nN = base.floor( x0.length / 2 );\nbase.strided.ssqrt( N, x1, -2, y1, 1 )\ny0\n"
Expand Down Expand Up @@ -3533,6 +3533,7 @@ isNaNArray.primitives,"var bool = isNaNArray.primitives( [ NaN, new Number( NaN
isNaNArray.objects,"var bool = isNaNArray.objects( [ new Number( NaN ), new Number( NaN ) ] )\nbool = isNaNArray.objects( [ NaN, new Number( NaN ), new Number( NaN ) ] )\nbool = isNaNArray.objects( [ NaN, NaN, NaN ] )\n"
isNativeFunction,"var bool = isNativeFunction( Date )\nfunction beep() {};\nbool = isNativeFunction( beep )\nbool = isNativeFunction( {} )\n"
isndarrayLike,"var M = {};\nM.data = [ 0, 0, 0, 0 ];\nM.ndims = 2;\nM.shape = [ 2, 2 ];\nM.strides = [ 2, 1 ];\nM.offset = 0;\nM.order = 'row-major';\nM.dtype = 'generic';\nM.length = 4;\nM.flags = {};\nM.get = function get( i, j ) {};\nM.set = function set( i, j ) {};\nvar bool = isndarrayLike( M )\nbool = isndarrayLike( [ 1, 2, 3, 4 ] )\nbool = isndarrayLike( 3.14 )\nbool = isndarrayLike( {} )\n"
isndarrayLikeWithDataType,"var M = {};\nM.data = [ 0, 0, 0, 0 ];\nM.ndims = 2;\nM.shape = [ 2, 2 ];\nM.strides = [ 2, 1 ];\nM.offset = 0;\nM.order = 'row-major';\nM.dtype = 'generic';\nM.length = 4;\nM.flags = {};\nM.get = function get( i, j ) {};\nM.set = function set( i, j ) {};\nvar bool = isndarrayLikeWithDataType( M, 'generic' )\nbool = isndarrayLikeWithDataType( [ 1, 2, 3, 4 ], 'generic' )\nbool = isndarrayLikeWithDataType( 3.14, 'generic' )\nbool = isndarrayLikeWithDataType( {}, 'generic' )\n"
isNegativeFinite,"var bool = isNegativeFinite( -5.0 )\nbool = isNegativeFinite( new Number( -5.0 ) )\nbool = isNegativeFinite( -3.14 )\nbool = isNegativeFinite( 5.0 )\nbool = isNegativeFinite( null )\nbool = isNegativeFinite( -1.0/0.0 )\nbool = isNegativeFinite( new Number( -1.0/0.0 ) )\n"
isNegativeFinite.isPrimitive,"var bool = isNegativeFinite.isPrimitive( -3.0 )\nbool = isNegativeFinite.isPrimitive( new Number( -3.0 ) )\nvar bool = isNegativeFinite.isPrimitive( -1.0/0.0 )\nbool = isNegativeFinite.isPrimitive( new Number( -1.0/0.0 ) )\n"
isNegativeFinite.isObject,"var bool = isNegativeFinite.isObject( -3.0 )\nbool = isNegativeFinite.isObject( new Number( -3.0 ) )\nbool = isNegativeFinite.isObject( -1.0/0.0 )\nbool = isNegativeFinite.isObject( new Number( -1.0/0.0 ) )\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/code-blocks/data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/data/contributor.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["Aayush Khanna","Adarsh Palaskar","Aditya Sapra","AgPriyanshu18","Aleksandr","Ali Salesi","Aman Bhansali","Amit Jimiwal","Anudeep Sanapala","Athan Reines","Ayaka","Brendan Graetz","Bruno Fenzl","Bryan Elee","Chinmay Joshi","Christopher Dambamuromo","Dan Rose","Daniel Killenberger","Daniel Yu","Dominik Moritz","Dorrin Sotoudeh","EuniceSim142","Frank Kovacs","Golden Kumar","Gunj Joshi","HarshaNP","Harshita Kalani","Hridyanshu","Jaimin Godhani","James Gelok","Jaysukh Makvana","Jenish Thapa","Jithin KS","Joel Mathew Koshy","Joey Reed","Jordan Gallivan","Joris Labie","Justin Dennison","Kaif Mohd","Karthik Prakash","Khaldon","Krishnendu Das","Lovelin","Manik Sharma","Marcus Fantham","Matt Cochrane","Mihir Pandit","Milan Raj","Mohammad Kaif","Momtchil Momtchev","Muhammad Haris","Naresh Jagadeesan","NightKnight","Nithin Katta","Nourhan Hasan","Ognjen Jevremović","Oneday12323","Philipp Burckhardt","Prajwal Kulkarni","Pranav Goswami","Praneki","Pratik","Priyansh","Pushpendra Chandravanshi","Raunak Kumar Gupta","Rejoan Sardar","Ricky Reusser","Ridam Garg","Robert Gislason","Roman Stetsyk","Rutam","Ryan Seal","Sai Srikar Dumpeti","SarthakPaandey","Seyyed Parsa Neshaei","Shashank Shekhar Singh","Shivam","Shraddheya Shendre","Shubh Mehta","Shubham Mishra","Sivam Das","Snehil Shah","Soumajit Chatterjee","Spandan Barve","Stephannie Jiménez Gacha","Suraj kumar","Tirtadwipa Manunggal","Tudor Pagu","Tufailahmed Bargir","Utkarsh","Utkarsh Raj","Vaibhav Patel","Varad Gupta","Xiaochuan Ye","Yernar Yergaziyev","naveen","nishant-s7","orimiles5","rainn","rei2hu","yaswanth"]
["Aayush Khanna","Adarsh Palaskar","Aditya Sapra","AgPriyanshu18","Aleksandr","Ali Salesi","Aman Bhansali","Amit Jimiwal","Anudeep Sanapala","Athan Reines","Ayaka","Brendan Graetz","Bruno Fenzl","Bryan Elee","Chinmay Joshi","Christopher Dambamuromo","Dan Rose","Daniel Killenberger","Daniel Yu","Debashis Maharana","Dominik Moritz","Dorrin Sotoudeh","EuniceSim142","Frank Kovacs","Golden Kumar","Gunj Joshi","HarshaNP","Harshita Kalani","Hridyanshu","Jaimin Godhani","James Gelok","Jaysukh Makvana","Jenish Thapa","Jithin KS","Joel Mathew Koshy","Joey Reed","Jordan Gallivan","Joris Labie","Justin Dennison","Kaif Mohd","Karthik Prakash","Khaldon","Krishnendu Das","Lovelin","Manik Sharma","Marcus Fantham","Matt Cochrane","Mihir Pandit","Milan Raj","Mohammad Kaif","Momtchil Momtchev","Muhammad Haris","Naresh Jagadeesan","NightKnight","Nithin Katta","Nourhan Hasan","Ognjen Jevremović","Oneday12323","Philipp Burckhardt","Prajwal Kulkarni","Pranav Goswami","Praneki","Pratik","Priyansh","Pushpendra Chandravanshi","Raunak Kumar Gupta","Rejoan Sardar","Ricky Reusser","Ridam Garg","Robert Gislason","Roman Stetsyk","Rutam","Ryan Seal","Sai Srikar Dumpeti","SarthakPaandey","Seyyed Parsa Neshaei","Shashank Shekhar Singh","Shivam","Shraddheya Shendre","Shubh Mehta","Shubham Mishra","Sivam Das","Snehil Shah","Soumajit Chatterjee","Spandan Barve","Stephannie Jiménez Gacha","Suraj kumar","Tirtadwipa Manunggal","Tudor Pagu","Tufailahmed Bargir","Utkarsh","Utkarsh Raj","Vaibhav Patel","Varad Gupta","Xiaochuan Ye","Yernar Yergaziyev","naveen","nishant-s7","olenkabilonizhka","orimiles5","rainn","rei2hu","yaswanth"]
Loading

1 comment on commit 254fa9e

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
array/fixed-endian-float32 $\color{green}194/194$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}194/194$
$\color{green}+100.00\%$
array $\color{green}955/955$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}955/955$
$\color{green}+100.00\%$
array/little-endian-float32 $\color{green}192/192$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}192/192$
$\color{green}+100.00\%$
namespace/alias2pkg $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
namespace/alias2related $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
namespace/alias2standalone $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
namespace/aliases $\color{green}144/144$
$\color{green}+100.00\%$
$\color{green}14/14$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}144/144$
$\color{green}+100.00\%$
namespace $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
namespace/pkg2alias $\color{green}100/100$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}100/100$
$\color{green}+100.00\%$
namespace/pkg2related $\color{green}100/100$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}100/100$
$\color{green}+100.00\%$
namespace/pkg2standalone $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
namespace/standalone2pkg $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
repl/code-blocks $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
repl $\color{red}10413/12996$
$\color{green}+80.12\%$
$\color{red}635/863$
$\color{green}+73.58\%$
$\color{red}146/232$
$\color{green}+62.93\%$
$\color{red}10413/12996$
$\color{green}+80.12\%$
repl/help $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
repl/info $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
repl/signature $\color{green}99/99$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}99/99$
$\color{green}+100.00\%$
repl/typed-signature $\color{green}99/99$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}99/99$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.