summaryrefslogtreecommitdiff
path: root/docs/type_system/fn.md
blob: 6a954bfbb7fa6ac42e8f39dde8241250f3781377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Fn

---

```text
Fn_class `alias Enum[.partial; .complete; .iterator; .closure; .bound; .regex; .native]

Fn[Fn_class; RETURN_TYPE; ARGS; STATE; List]
```

## Transient Union Return

### \`return_value

### \`return_error

### \`return_some

### \`return_none

## Transient Union Return Chaining

# Iterating

## \`has_next

## Transient Union Yield

### \`yield_value

### \`yield_error

### \`yield_some

### \`yield_none

```text
fn : Fn[x] $ ( @ 1 .. x { `yield_some 2 * x } )
it : fn `sync 10
// invoking
@ it { `log v }[v] // Opton[Int[...]].v $ (.some : 2); Opton[Int[...]].v $ (.some : 4)
// same as above
@ `has_next it { `log `call_sync it }
```

# Calling

## \`call_async

```text
task : `call_async fn
value : `task_wait task
```

## \`call_sync

```text
fn `call_sync args // `task_wait fn `call_async args
```