File tree 7 files changed +66
-6
lines changed
7 files changed +66
-6
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,12 @@ after running `wally install`.
26
26
If you're using the fork of Wally for Lune, you can use
27
27
[ lune-wally-package-types] ( https://github.com/VirtualButFake/lune-wally-package-types ) .
28
28
29
+ ### With pesde
30
+
31
+ You can also install util.luau with [ pesde] ( https://pesde.daimond113.com ) ,
32
+ unlike Wally, pesde supports types automatically, so you don't need to use any
33
+ additional tools.
34
+
29
35
### Roblox Models
30
36
31
37
You can also install ` util.luau ` through ` .rbxm ` files, which are available in
Original file line number Diff line number Diff line change @@ -22,10 +22,19 @@ This utility is inspired by the
22
22
23
23
Learn more about [ installation] ( /docs/getting-started#installation ) .
24
24
25
- ``` toml-vue [Wally]
25
+ ::: code-group
26
+
27
+ ``` toml-vue [wally]
28
+ [dependencies]
26
29
future = "lukadev-0/future@{{ data.future }}"
27
30
```
28
31
32
+ ``` sh-vue [pesde]
33
+ pesde add lukadev_0/future@{{ data.future }}
34
+ ```
35
+
36
+ :::
37
+
29
38
## Static Functions
30
39
31
40
### Future.new
Original file line number Diff line number Diff line change @@ -23,10 +23,19 @@ This utility is inspired by the
23
23
24
24
Learn more about [ installation] ( /docs/getting-started#installation ) .
25
25
26
- ``` toml-vue [Wally]
26
+ ::: code-group
27
+
28
+ ``` toml-vue [wally]
29
+ [dependencies]
27
30
option = "lukadev-0/option@{{ data.option }}"
28
31
```
29
32
33
+ ``` sh-vue [pesde]
34
+ pesde add lukadev_0/option@{{ data.option }}
35
+ ```
36
+
37
+ :::
38
+
30
39
## Immutability
31
40
32
41
The ` Option ` type is immutable, meaning that once an ` Option ` is created, it
Original file line number Diff line number Diff line change @@ -24,10 +24,19 @@ This utility is inspired by the
24
24
25
25
Learn more about [ installation] ( /docs/getting-started#installation ) .
26
26
27
- ``` toml-vue [Wally]
27
+ ::: code-group
28
+
29
+ ``` toml-vue [wally]
30
+ [dependencies]
28
31
result = "lukadev-0/result@{{ data.result }}"
29
32
```
30
33
34
+ ``` sh-vue [pesde]
35
+ pesde add lukadev_0/result@{{ data.result }}
36
+ ```
37
+
38
+ :::
39
+
31
40
## Immutability
32
41
33
42
The ` Result ` type is immutable, meaning that once an ` Result ` is created, it
Original file line number Diff line number Diff line change @@ -18,10 +18,19 @@ See [supported runtimes](/docs/supported-runtimes) for more information.
18
18
19
19
Learn more about [ installation] ( /docs/getting-started#installation ) .
20
20
21
- ``` toml-vue [Wally]
21
+ ::: code-group
22
+
23
+ ``` toml-vue [wally]
24
+ [dependencies]
22
25
std = "lukadev-0/std@{{ data.std }}"
23
26
```
24
27
28
+ ``` sh-vue [pesde]
29
+ pesde add lukadev_0/std@{{ data.std }}
30
+ ```
31
+
32
+ :::
33
+
25
34
## Libraries
26
35
27
36
### std.task
Original file line number Diff line number Diff line change @@ -22,10 +22,19 @@ This can make spawning threads significantly faster than using `task.spawn`.
22
22
23
23
Learn more about [ installation] ( /docs/getting-started#installation ) .
24
24
25
- ``` toml-vue [Wally]
25
+ ::: code-group
26
+
27
+ ``` toml-vue [wally]
28
+ [dependencies]
26
29
threadpool = "lukadev-0/threadpool@{{ data.threadpool }}"
27
30
```
28
31
32
+ ``` sh-vue [pesde]
33
+ pesde add lukadev_0/threadpool@{{ data.threadpool }}
34
+ ```
35
+
36
+ :::
37
+
29
38
## Functions
30
39
31
40
### threadpool.spawn
Original file line number Diff line number Diff line change @@ -14,10 +14,19 @@ import { data } from "./package-versions.data.ts";
14
14
15
15
Learn more about [ installation] ( /docs/getting-started#installation ) .
16
16
17
- ``` toml-vue [Wally]
17
+ ::: code-group
18
+
19
+ ``` toml-vue [wally]
20
+ [dependencies]
18
21
timer = "lukadev-0/timer@{{ data.timer }}"
19
22
```
20
23
24
+ ``` sh-vue [pesde]
25
+ pesde add lukadev_0/timer@{{ data.timer }}
26
+ ```
27
+
28
+ :::
29
+
21
30
## Functions
22
31
23
32
### timer.delay
You can’t perform that action at this time.
0 commit comments