list
Description
Type Tags
list
Object Value
Objects of type list have no value, and it is an error to try to get or set this value.
list.new()
Description
Prototype
list.new ()
Parameters
None
Properties
| Property | Type | Description |
|---|---|---|
| _ | type(*) | |
| __ | type(*) | |
| add | function | |
| clear | function | |
| count | integer | |
| find | function | |
| getfirst | function | |
| head | listnode | |
| remove | function | |
| search | function | |
| tail | listnode | |
| type | type |
Methods
add()
Description
Prototype
listvar.add (
list ,
listnode me )
t1
Parameters
| Parameter | Default value | Type name | Description |
|---|---|---|---|
| me | None | list | |
| t1 | None | listnode |
clear()
Description
Prototype
listvar.clear (
list )
me
Parameters
| Parameter | Default value | Type name | Description |
|---|---|---|---|
| me | None | list |
find()
Description
Prototype
listvar.find (
list ,
listnode me )
t
Parameters
| Parameter | Default value | Type name | Description |
|---|---|---|---|
| me | None | list | |
| t | None | listnode |
getfirst()
Description
Prototype
listvar.getfirst (
list )
me
Parameters
| Parameter | Default value | Type name | Description |
|---|---|---|---|
| me | None | list |
remove()
Description
Prototype
listvar.remove (
list ,
listnode me )
t
Parameters
| Parameter | Default value | Type name | Description |
|---|---|---|---|
| me | None | list | |
| t | None | listnode |
search()
Description
Prototype
listvar.search (
list ,
type(*) me )
keyval
Parameters
| Parameter | Default value | Type name | Description |
|---|---|---|---|
| me | None | list | |
| keyval | None | type(*) |


