@shd101wyy/yo 0.1.15 → 0.1.16
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/README.md +3 -0
- package/out/cjs/index.cjs +541 -561
- package/out/cjs/yo-cli.cjs +644 -664
- package/out/cjs/yo-lsp.cjs +585 -605
- package/out/esm/index.mjs +527 -547
- package/out/types/src/codegen/exprs/return.d.ts +1 -1
- package/out/types/src/codegen/types/generation.d.ts +0 -2
- package/out/types/src/codegen/utils/index.d.ts +2 -8
- package/out/types/src/evaluator/builtins/rc-fns.d.ts +0 -5
- package/out/types/src/evaluator/context.d.ts +7 -3
- package/out/types/src/evaluator/trait-checking.d.ts +2 -0
- package/out/types/src/evaluator/types/object.d.ts +2 -1
- package/out/types/src/evaluator/types/struct.d.ts +2 -1
- package/out/types/src/evaluator/types/utils.d.ts +3 -8
- package/out/types/src/expr.d.ts +1 -2
- package/out/types/src/function-value.d.ts +1 -0
- package/out/types/src/types/creators.d.ts +2 -3
- package/out/types/src/types/definitions.d.ts +1 -6
- package/out/types/src/types/guards.d.ts +5 -2
- package/out/types/src/types/tags.d.ts +0 -1
- package/out/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/std/imm/list.yo +254 -0
- package/std/imm/map.yo +917 -0
- package/std/imm/set.yo +179 -0
- package/std/imm/sorted_map.yo +595 -0
- package/std/imm/sorted_set.yo +202 -0
- package/std/imm/string.yo +667 -0
- package/std/imm/vec.yo +456 -0
- package/std/prelude.yo +22 -5
- package/std/sync/channel.yo +92 -44
- package/std/sync/cond.yo +5 -1
- package/std/sync/mutex.yo +5 -1
- package/std/sync/once.yo +2 -1
- package/std/sync/rwlock.yo +2 -1
- package/std/sync/waitgroup.yo +2 -1
- package/out/types/src/codegen/exprs/arc.d.ts +0 -5
- package/out/types/src/evaluator/calls/arc.d.ts +0 -15
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
**Work in Progress :) Not Ready!**
|
|
8
8
|
|
|
9
|
+
https://shd101wyy.github.io/Yo
|
|
10
|
+
|
|
9
11
|
A multi-paradigm, general-purpose, compiled programming language.
|
|
10
12
|
Yo aims to be **Simple** and **Fast** (around 0% - 15% slower than C).
|
|
11
13
|
|
|
@@ -32,6 +34,7 @@ Yo aims to be **Simple** and **Fast** (around 0% - 15% slower than C).
|
|
|
32
34
|
- [Contributing](#contributing)
|
|
33
35
|
- [Setup](#setup)
|
|
34
36
|
- [Editor Support](#editor-support)
|
|
37
|
+
- [Version Management](#version-management)
|
|
35
38
|
- [AI Agent Skills](#ai-agent-skills)
|
|
36
39
|
- [Using in your own project](#using-in-your-own-project)
|
|
37
40
|
- [Star History](#star-history)
|