Skip to content

Commit d39295b

Browse files
committed
chore: update stdlib documentation
1 parent 0111c50 commit d39295b

24 files changed

Lines changed: 46 additions & 146 deletions

content/docs/std/Async.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Async"
33
slug: "async"
44
description: ""
55
summary: ""
6-
date: 2026-03-17T21:16:22+02:00
7-
lastmod: 2026-03-17T21:16:22+02:00
6+
date: 2026-03-19T05:59:58+02:00
7+
lastmod: 2026-03-19T05:59:58+02:00
88
draft: false
99
weight: 410
1010
toc: true

content/docs/std/Benchmark.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Benchmark"
33
slug: "benchmark"
44
description: ""
55
summary: ""
6-
date: 2026-03-17T21:16:22+02:00
7-
lastmod: 2026-03-17T21:16:22+02:00
6+
date: 2026-03-19T05:59:58+02:00
7+
lastmod: 2026-03-19T05:59:58+02:00
88
draft: false
99
weight: 410
1010
toc: true

content/docs/std/Builtins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Builtins"
33
slug: "builtins"
44
description: ""
55
summary: ""
6-
date: 2026-03-17T21:16:22+02:00
7-
lastmod: 2026-03-17T21:16:22+02:00
6+
date: 2026-03-19T05:59:58+02:00
7+
lastmod: 2026-03-19T05:59:58+02:00
88
draft: false
99
weight: 410
1010
toc: true

content/docs/std/Bytecode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Bytecode"
33
slug: "bytecode"
44
description: ""
55
summary: ""
6-
date: 2026-03-17T21:16:22+02:00
7-
lastmod: 2026-03-17T21:16:22+02:00
6+
date: 2026-03-19T05:59:58+02:00
7+
lastmod: 2026-03-19T05:59:58+02:00
88
draft: false
99
weight: 410
1010
toc: true

content/docs/std/Cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Cli"
33
slug: "cli"
44
description: ""
55
summary: ""
6-
date: 2026-03-17T21:16:22+02:00
7-
lastmod: 2026-03-17T21:16:22+02:00
6+
date: 2026-03-19T05:59:58+02:00
7+
lastmod: 2026-03-19T05:59:58+02:00
88
draft: false
99
weight: 410
1010
toc: true

content/docs/std/Dict.md

Lines changed: 2 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Dict"
33
slug: "dict"
44
description: ""
55
summary: ""
6-
date: 2026-03-17T21:16:22+02:00
7-
lastmod: 2026-03-17T21:16:22+02:00
6+
date: 2026-03-19T05:59:58+02:00
7+
lastmod: 2026-03-19T05:59:58+02:00
88
draft: false
99
weight: 410
1010
toc: true
@@ -135,28 +135,6 @@ Checks if the dictionary has a given key
135135
(print (dict:contains? data "test")) # false
136136
{{< /highlight_arkscript >}}
137137

138-
## contains
139-
140-
---
141-
`(let contains <value>)`
142-
Checks if the dictionary has a given key
143-
144-
**Deprecated**: Use `dict:contains?`
145-
146-
147-
**Author**: [@SuperFola](https://github.com/SuperFola)
148-
149-
#### Parameter
150-
- `_D`: dictionary
151-
152-
153-
#### Example
154-
{{< highlight_arkscript >}}
155-
(let data (dict "key" "value"))
156-
(print (dict:contains data "key")) # true
157-
(print (dict:contains data "test")) # false
158-
{{< /highlight_arkscript >}}
159-
160138
## getOrElse
161139

162140
---
@@ -244,27 +222,6 @@ Returns a list of the keys of a dictionary
244222
(print (dict:keys data)) # [key, 5]
245223
{{< /highlight_arkscript >}}
246224

247-
## size
248-
249-
---
250-
`(let size (fun (_D) (...)))`
251-
Computes the number of (key, value) pairs in a given dictionary
252-
253-
**Deprecated**: Use the builtin `len` instead
254-
255-
256-
**Author**: [@SuperFola](https://github.com/SuperFola)
257-
258-
#### Parameter
259-
- `_D`: dictionary
260-
261-
262-
#### Example
263-
{{< highlight_arkscript >}}
264-
(let data (dict "key" "value"))
265-
(print (dict:size data)) # 1
266-
{{< /highlight_arkscript >}}
267-
268225
## values
269226

270227
---

content/docs/std/Events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Events"
33
slug: "events"
44
description: ""
55
summary: ""
6-
date: 2026-03-17T21:16:22+02:00
7-
lastmod: 2026-03-17T21:16:22+02:00
6+
date: 2026-03-19T05:59:58+02:00
7+
lastmod: 2026-03-19T05:59:58+02:00
88
draft: false
99
weight: 410
1010
toc: true

content/docs/std/Exceptions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Exceptions"
33
slug: "exceptions"
44
description: ""
55
summary: ""
6-
date: 2026-03-17T21:16:22+02:00
7-
lastmod: 2026-03-17T21:16:22+02:00
6+
date: 2026-03-19T05:59:58+02:00
7+
lastmod: 2026-03-19T05:59:58+02:00
88
draft: false
99
weight: 410
1010
toc: true

content/docs/std/Functional.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Functional"
33
slug: "functional"
44
description: ""
55
summary: ""
6-
date: 2026-03-17T21:16:22+02:00
7-
lastmod: 2026-03-17T21:16:22+02:00
6+
date: 2026-03-19T05:59:58+02:00
7+
lastmod: 2026-03-19T05:59:58+02:00
88
draft: false
99
weight: 410
1010
toc: true

content/docs/std/IO.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "IO"
33
slug: "io"
44
description: ""
55
summary: ""
6-
date: 2026-03-17T21:16:22+02:00
7-
lastmod: 2026-03-17T21:16:22+02:00
6+
date: 2026-03-19T05:59:58+02:00
7+
lastmod: 2026-03-19T05:59:58+02:00
88
draft: false
99
weight: 410
1010
toc: true

0 commit comments

Comments
 (0)