Skip to content

Commit bf15cc4

Browse files
committedJul 13, 2024··
feat: add boolean and lapack to namespace
1 parent ff4b81e commit bf15cc4

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
 

‎lib/main.js

+18
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,15 @@ setReadOnly( stdlib, 'bigint', require( '@stdlib/bigint' ) );
8181
*/
8282
setReadOnly( stdlib, 'blas', require( '@stdlib/blas' ) );
8383

84+
/**
85+
* @name boolean
86+
* @memberof stdlib
87+
* @readonly
88+
* @type {Namespace}
89+
* @see {@link module:@stdlib/boolean}
90+
*/
91+
setReadOnly( stdlib, 'boolean', require( '@stdlib/boolean' ) );
92+
8493
/**
8594
* @name buffer
8695
* @memberof stdlib
@@ -171,6 +180,15 @@ setReadOnly( stdlib, 'function', require( '@stdlib/function' ) );
171180
*/
172181
setReadOnly( stdlib, 'iter', require( '@stdlib/iter' ) );
173182

183+
/**
184+
* @name lapack
185+
* @memberof stdlib
186+
* @readonly
187+
* @type {Namespace}
188+
* @see {@link module:@stdlib/lapack}
189+
*/
190+
setReadOnly( stdlib, 'lapack', require( '@stdlib/lapack' ) );
191+
174192
/**
175193
* @name math
176194
* @memberof stdlib

1 commit comments

Comments
 (1)

stdlib-bot commented on Jul 13, 2024

@stdlib-bot
Contributor

Coverage Report

Package Statements Branches Functions Lines
lapack $\color{green}51/51$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}51/51$
$\color{green}+100.00\%$
lapack/base $\color{green}51/51$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}51/51$
$\color{green}+100.00\%$
lapack $\color{green}51/51$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}51/51$
$\color{green}+100.00\%$

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

Please sign in to comment.