vault backup: 2023-10-11 11:58:17
This commit is contained in:
parent
745172f553
commit
b6834e2c29
@ -36,3 +36,9 @@ WITH
|
|||||||
list l
|
list l
|
||||||
element e
|
element e
|
||||||
```
|
```
|
||||||
|
`cons` add en element to the head of the list (eg. li <- cons(cloud, li))
|
||||||
|
`head`return the element in the head of the list (eg. pl <- head(li))
|
||||||
|
`contents`return what is the element of the head
|
||||||
|
`first`return the first element of the list (is equivalent to contents)
|
||||||
|
`tail`remove the first element of the list (eg. fl <- tail (li))
|
||||||
|
`next`return the element after a box (eg. pspt <= next(head(li))))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user