Skip to content

Commit 90596da

Browse files
committed
Update namespace
1 parent 1c6aed0 commit 90596da

File tree

23 files changed

+58
-15
lines changed

23 files changed

+58
-15
lines changed

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.csv

+2
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,7 @@ functionName,"@stdlib/utils/function-name"
990990
functionSequence,"@stdlib/utils/function-sequence"
991991
functionSequenceAsync,"@stdlib/utils/async/function-sequence"
992992
GAMMA_LANCZOS_G,"@stdlib/constants/math/float64-gamma-lanczos-g"
993+
gdot,"@stdlib/blas/gdot"
993994
getegid,"@stdlib/process/getegid"
994995
geteuid,"@stdlib/process/geteuid"
995996
getgid,"@stdlib/process/getgid"
@@ -1791,6 +1792,7 @@ SAVOY_STOPWORDS_IT,"@stdlib/datasets/savoy-stopwords-it"
17911792
SAVOY_STOPWORDS_POR,"@stdlib/datasets/savoy-stopwords-por"
17921793
SAVOY_STOPWORDS_SP,"@stdlib/datasets/savoy-stopwords-sp"
17931794
SAVOY_STOPWORDS_SWE,"@stdlib/datasets/savoy-stopwords-swe"
1795+
sdot,"@stdlib/blas/sdot"
17941796
SECONDS_IN_DAY,"@stdlib/constants/time/seconds-in-day"
17951797
SECONDS_IN_HOUR,"@stdlib/constants/time/seconds-in-hour"
17961798
SECONDS_IN_MINUTE,"@stdlib/constants/time/seconds-in-minute"

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/alias2related/data/data.csv

+3-1
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ dayOfQuarter,"dayOfYear"
861861
dayOfYear,"dayOfQuarter"
862862
daysInMonth,"daysInYear"
863863
daysInYear,"daysInMonth"
864-
ddot,"base.ddot"
864+
ddot,"base.ddot,gdot,sdot"
865865
debugSinkStream,"debugStream,inspectSinkStream"
866866
debugStream,"debugSinkStream,inspectStream"
867867
deepEqual,"isStrictEqual,isSameValue"
@@ -990,6 +990,7 @@ functionName,"constructorName"
990990
functionSequence,"compose,functionSequenceAsync"
991991
functionSequenceAsync,"composeAsync,functionSequence"
992992
GAMMA_LANCZOS_G,""
993+
gdot,"base.gdot,gdot,sdot"
993994
getegid,"geteuid,getgid,getuid"
994995
geteuid,"getegid,getgid,getuid"
995996
getgid,"getegid,geteuid,getuid"
@@ -1791,6 +1792,7 @@ SAVOY_STOPWORDS_IT,""
17911792
SAVOY_STOPWORDS_POR,""
17921793
SAVOY_STOPWORDS_SP,""
17931794
SAVOY_STOPWORDS_SWE,""
1795+
sdot,"base.sdot,ddot,gdot"
17941796
SECONDS_IN_DAY,""
17951797
SECONDS_IN_HOUR,""
17961798
SECONDS_IN_MINUTE,""

lib/node_modules/@stdlib/namespace/alias2related/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/aliases/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/aliases/data/data.txt

+2
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,7 @@ functionName
990990
functionSequence
991991
functionSequenceAsync
992992
GAMMA_LANCZOS_G
993+
gdot
993994
getegid
994995
geteuid
995996
getgid
@@ -1791,6 +1792,7 @@ SAVOY_STOPWORDS_IT
17911792
SAVOY_STOPWORDS_POR
17921793
SAVOY_STOPWORDS_SP
17931794
SAVOY_STOPWORDS_SWE
1795+
sdot
17941796
SECONDS_IN_DAY
17951797
SECONDS_IN_HOUR
17961798
SECONDS_IN_MINUTE

lib/node_modules/@stdlib/namespace/lib/namespace/d.js

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ ns.push({
8888
'related': [
8989
'@stdlib/blas/base/ddot',
9090
'@stdlib/blas/dsdot',
91+
'@stdlib/blas/gdot',
9192
'@stdlib/blas/sdot',
9293
'@stdlib/blas/sdsdot'
9394
]

lib/node_modules/@stdlib/namespace/lib/namespace/g.js

+12
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,18 @@ ns.push({
3232
'related': []
3333
});
3434

35+
ns.push({
36+
'alias': 'gdot',
37+
'path': '@stdlib/blas/gdot',
38+
'value': require( '@stdlib/blas/gdot' ),
39+
'type': 'Function',
40+
'related': [
41+
'@stdlib/blas/base/gdot',
42+
'@stdlib/blas/gdot',
43+
'@stdlib/blas/sdot'
44+
]
45+
});
46+
3547
ns.push({
3648
'alias': 'getegid',
3749
'path': '@stdlib/process/getegid',

lib/node_modules/@stdlib/namespace/lib/namespace/s.js

+14
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,20 @@ ns.push({
114114
'related': []
115115
});
116116

117+
ns.push({
118+
'alias': 'sdot',
119+
'path': '@stdlib/blas/sdot',
120+
'value': require( '@stdlib/blas/sdot' ),
121+
'type': 'Function',
122+
'related': [
123+
'@stdlib/blas/base/sdot',
124+
'@stdlib/blas/ddot',
125+
'@stdlib/blas/dsdot',
126+
'@stdlib/blas/gdot',
127+
'@stdlib/blas/sdsdot'
128+
]
129+
});
130+
117131
ns.push({
118132
'alias': 'SECONDS_IN_DAY',
119133
'path': '@stdlib/constants/time/seconds-in-day',

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.csv

+2
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,7 @@
990990
"@stdlib/utils/function-sequence",functionSequence
991991
"@stdlib/utils/async/function-sequence",functionSequenceAsync
992992
"@stdlib/constants/math/float64-gamma-lanczos-g",GAMMA_LANCZOS_G
993+
"@stdlib/blas/gdot",gdot
993994
"@stdlib/process/getegid",getegid
994995
"@stdlib/process/geteuid",geteuid
995996
"@stdlib/process/getgid",getgid
@@ -1791,6 +1792,7 @@
17911792
"@stdlib/datasets/savoy-stopwords-por",SAVOY_STOPWORDS_POR
17921793
"@stdlib/datasets/savoy-stopwords-sp",SAVOY_STOPWORDS_SP
17931794
"@stdlib/datasets/savoy-stopwords-swe",SAVOY_STOPWORDS_SWE
1795+
"@stdlib/blas/sdot",sdot
17941796
"@stdlib/constants/time/seconds-in-day",SECONDS_IN_DAY
17951797
"@stdlib/constants/time/seconds-in-hour",SECONDS_IN_HOUR
17961798
"@stdlib/constants/time/seconds-in-minute",SECONDS_IN_MINUTE

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2related/data/data.csv

+3-1
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@
861861
"@stdlib/time/day-of-year","@stdlib/time/day-of-quarter"
862862
"@stdlib/time/days-in-month","@stdlib/time/days-in-year"
863863
"@stdlib/time/days-in-year","@stdlib/time/days-in-month"
864-
"@stdlib/blas/ddot","@stdlib/blas/base/ddot"
864+
"@stdlib/blas/ddot","@stdlib/blas/base/ddot,@stdlib/blas/gdot,@stdlib/blas/sdot"
865865
"@stdlib/streams/node/debug-sink","@stdlib/streams/node/debug,@stdlib/streams/node/inspect-sink"
866866
"@stdlib/streams/node/debug","@stdlib/streams/node/debug-sink,@stdlib/streams/node/inspect"
867867
"@stdlib/assert/deep-equal","@stdlib/assert/is-strict-equal,@stdlib/assert/is-same-value"
@@ -990,6 +990,7 @@
990990
"@stdlib/utils/function-sequence","@stdlib/utils/compose,@stdlib/utils/async/function-sequence"
991991
"@stdlib/utils/async/function-sequence","@stdlib/utils/async/compose,@stdlib/utils/function-sequence"
992992
"@stdlib/constants/math/float64-gamma-lanczos-g",""
993+
"@stdlib/blas/gdot","@stdlib/blas/base/gdot,@stdlib/blas/gdot,@stdlib/blas/sdot"
993994
"@stdlib/process/getegid","@stdlib/process/geteuid,@stdlib/process/getgid,@stdlib/process/getuid"
994995
"@stdlib/process/geteuid","@stdlib/process/getegid,@stdlib/process/getgid,@stdlib/process/getuid"
995996
"@stdlib/process/getgid","@stdlib/process/getegid,@stdlib/process/geteuid,@stdlib/process/getuid"
@@ -1791,6 +1792,7 @@
17911792
"@stdlib/datasets/savoy-stopwords-por",""
17921793
"@stdlib/datasets/savoy-stopwords-sp",""
17931794
"@stdlib/datasets/savoy-stopwords-swe",""
1795+
"@stdlib/blas/sdot","@stdlib/blas/base/sdot,@stdlib/blas/ddot,@stdlib/blas/gdot"
17941796
"@stdlib/constants/time/seconds-in-day",""
17951797
"@stdlib/constants/time/seconds-in-hour",""
17961798
"@stdlib/constants/time/seconds-in-minute",""

lib/node_modules/@stdlib/namespace/pkg2related/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/code-blocks/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -1456,6 +1456,7 @@ dayOfQuarter,"var day = dayOfQuarter()\nday = dayOfQuarter( new Date() )\nday =
14561456
dayOfYear,"var day = dayOfYear()\nday = dayOfYear( new Date() )\nday = dayOfYear( 12, 31, 2016 )\nday = dayOfYear( 'dec', 31, 2016 )\nday = dayOfYear( 'december', 31, 2016 )\n"
14571457
daysInMonth,"var num = daysInMonth()\nnum = daysInMonth( 2 )\nnum = daysInMonth( 2, 2016 )\nnum = daysInMonth( 2, 2017 )\nnum = daysInMonth( 'feb', 2016 )\nnum = daysInMonth( 'february', 2016 )\n"
14581458
daysInYear,"var num = daysInYear()\nnum = daysInYear( 2016 )\nnum = daysInYear( 2017 )\n"
1459+
ddot,"var x = array( new Float64Array( [ 4.0, 2.0, -3.0, 5.0, -1.0 ] ) );\nvar y = array( new Float64Array( [ 2.0, 6.0, -1.0, -4.0, 8.0 ] ) );\nddot( x, y )\nx = [ 4.0, 2.0, -3.0, 5.0, -1.0 ];\ny = [ 2.0, 6.0, -1.0, -4.0, 8.0 ];\nddot( x, y, { 'casting': 'unsafe' } )\n"
14591460
debugSinkStream,"var s = debugSinkStream( { 'name': 'foo' } );\ns.write( 'a' );\ns.write( 'b' );\ns.write( 'c' );\ns.end();\n"
14601461
debugSinkStream.factory,"var opts = { 'objectMode': true, 'highWaterMark': 64 };\nvar createStream = debugSinkStream.factory( opts );\n"
14611462
debugSinkStream.objectMode,"var s = debugSinkStream.objectMode( { 'name': 'foo' } );\ns.write( { 'value': 'a' } );\ns.write( { 'value': 'b' } );\ns.write( { 'value': 'c' } );\ns.end();\n"

lib/node_modules/@stdlib/repl/code-blocks/data/data.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)