2025-01-24 02:30:09 +00:00
|
|
|
---
|
|
|
|
---
|
|
|
|
|
|
|
|
# List Builtins
|
|
|
|
|
|
|
|
### add
|
|
|
|
|
|
|
|
```
|
|
|
|
lists:add LIST [ARGS...]
|
|
|
|
```
|
|
|
|
|
|
|
|
Adds values to the end of the list. Returns the modified list.
|
|
|
|
|
2025-01-25 22:36:16 +00:00
|
|
|
### batch
|
|
|
|
|
|
|
|
```
|
|
|
|
lists:batch LIST SIZE
|
|
|
|
```
|
|
|
|
|
|
|
|
Returns a list containing the items of LIST grouped into a sub-list no greater
|
|
|
|
than SIZE. SIZE must be an integer greater than 0. If LIST is empty,
|
|
|
|
then an empty list is returned.
|