* Interface describing the `stdlib` namespace.
| 61 | * Interface describing the `stdlib` namespace. |
| 62 | */ |
| 63 | interface Namespace { |
| 64 | /** |
| 65 | * Arrays. |
| 66 | */ |
| 67 | array: typeof array; |
| 68 | |
| 69 | /** |
| 70 | * Standard assertion utilities. |
| 71 | */ |
| 72 | assert: typeof assert; |
| 73 | |
| 74 | bench: typeof bench; |
| 75 | |
| 76 | /** |
| 77 | * BigInt. |
| 78 | */ |
| 79 | bigint: typeof bigint; |
| 80 | |
| 81 | /** |
| 82 | * Standard library BLAS. |
| 83 | */ |
| 84 | blas: typeof blas; |
| 85 | |
| 86 | /** |
| 87 | * Buffer. |
| 88 | */ |
| 89 | buffer: typeof buffer; |
| 90 | |
| 91 | /** |
| 92 | * Command-line interface. |
| 93 | */ |
| 94 | cli: typeof cli; |
| 95 | |
| 96 | /** |
| 97 | * Complex numbers. |
| 98 | */ |
| 99 | complex: typeof complex; |
| 100 | |
| 101 | /** |
| 102 | * Standard library constants. |
| 103 | */ |
| 104 | constants: typeof constants; |
| 105 | |
| 106 | /** |
| 107 | * Returns datasets. |
| 108 | * |
| 109 | * @param name - dataset name |
| 110 | * @param options - dataset options |
| 111 | * @throws unsupported/unrecognized dataset name |
| 112 | * @returns dataset |
| 113 | */ |
| 114 | datasets: typeof datasets; |
| 115 | |
| 116 | /** |
| 117 | * Data structures. |
| 118 | */ |
| 119 | dstructs: typeof dstructs; |
| 120 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…