@almadar/std 6.4.1 → 6.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/behaviors/registry/atoms/std-search.orb +2 -2
- package/behaviors/registry/atoms/std-selection.orb +2 -2
- package/behaviors/registry/atoms/std-sort.orb +2 -2
- package/behaviors/registry/atoms/std-sprite.orb +2 -2
- package/dist/behaviors/registry/atoms/std-search.orb +2 -2
- package/dist/behaviors/registry/atoms/std-selection.orb +2 -2
- package/dist/behaviors/registry/atoms/std-sort.orb +2 -2
- package/dist/behaviors/registry/atoms/std-sprite.orb +2 -2
- package/dist/index.d.ts +4 -3
- package/dist/index.js +680 -2
- package/dist/index.js.map +1 -1
- package/dist/modules/agent.d.ts +1 -1
- package/dist/modules/array.d.ts +1 -1
- package/dist/modules/async.d.ts +1 -1
- package/dist/modules/composition.d.ts +1 -1
- package/dist/modules/contract.d.ts +1 -1
- package/dist/modules/core.d.ts +27 -0
- package/dist/modules/core.js +607 -0
- package/dist/modules/core.js.map +1 -0
- package/dist/modules/data.d.ts +1 -1
- package/dist/modules/format.d.ts +1 -1
- package/dist/modules/graph.d.ts +1 -1
- package/dist/modules/index.d.ts +2 -1
- package/dist/modules/index.js +605 -1
- package/dist/modules/index.js.map +1 -1
- package/dist/modules/math.d.ts +1 -1
- package/dist/modules/nn.d.ts +1 -1
- package/dist/modules/object.d.ts +1 -1
- package/dist/modules/os.d.ts +1 -1
- package/dist/modules/prob.d.ts +1 -1
- package/dist/modules/str.d.ts +1 -1
- package/dist/modules/tensor.d.ts +1 -1
- package/dist/modules/time.d.ts +1 -1
- package/dist/modules/train.d.ts +1 -1
- package/dist/modules/validate.d.ts +1 -1
- package/dist/registry.d.ts +7 -3
- package/dist/registry.js +606 -1
- package/dist/registry.js.map +1 -1
- package/dist/{types-hu1LavLs.d.ts → types-D7dG8fBF.d.ts} +62 -3
- package/package.json +2 -3
package/dist/modules/math.d.ts
CHANGED
package/dist/modules/nn.d.ts
CHANGED
package/dist/modules/object.d.ts
CHANGED
package/dist/modules/os.d.ts
CHANGED
package/dist/modules/prob.d.ts
CHANGED
package/dist/modules/str.d.ts
CHANGED
package/dist/modules/tensor.d.ts
CHANGED
package/dist/modules/time.d.ts
CHANGED
package/dist/modules/train.d.ts
CHANGED
package/dist/registry.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { OperatorMeta } from '
|
|
2
|
-
import { S as StdOperatorMeta, a as StdModule } from './types-hu1LavLs.js';
|
|
1
|
+
import { S as StdOperatorMeta, a as StdModule, O as OperatorMeta } from './types-D7dG8fBF.js';
|
|
3
2
|
|
|
4
3
|
/**
|
|
5
4
|
* Standard Library Registry
|
|
@@ -17,6 +16,11 @@ declare const STD_OPERATORS: Record<string, StdOperatorMeta>;
|
|
|
17
16
|
/**
|
|
18
17
|
* Module-specific operator registries.
|
|
19
18
|
*/
|
|
19
|
+
/**
|
|
20
|
+
* Flat array of every operator name (core + std-module).
|
|
21
|
+
* Convenience const for grammar generators and validators.
|
|
22
|
+
*/
|
|
23
|
+
declare const OPERATOR_NAMES: readonly string[];
|
|
20
24
|
declare const STD_OPERATORS_BY_MODULE: Record<string, Record<string, StdOperatorMeta>>;
|
|
21
25
|
/**
|
|
22
26
|
* Get std operator metadata by name.
|
|
@@ -137,4 +141,4 @@ declare function getStdLibStats(): {
|
|
|
137
141
|
lambdaOperators: number;
|
|
138
142
|
};
|
|
139
143
|
|
|
140
|
-
export { STD_OPERATORS, STD_OPERATORS_BY_MODULE, getAllStdOperators, getLambdaOperators, getModuleOperators, getOperatorMetaExtended, getStdEffectOperators, getStdLibStats, getStdOperatorMeta, getStdOperatorsByModule, getStdPureOperators, isEffectOperatorExtended, isKnownOperatorExtended, isKnownStdOperator, isStdEffectOperator, isStdGuardOperator, validateOperatorArityExtended, validateStdOperatorArity };
|
|
144
|
+
export { OPERATOR_NAMES, STD_OPERATORS, STD_OPERATORS_BY_MODULE, getAllStdOperators, getLambdaOperators, getModuleOperators, getOperatorMetaExtended, getStdEffectOperators, getStdLibStats, getStdOperatorMeta, getStdOperatorsByModule, getStdPureOperators, isEffectOperatorExtended, isKnownOperatorExtended, isKnownStdOperator, isStdEffectOperator, isStdGuardOperator, validateOperatorArityExtended, validateStdOperatorArity };
|