The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
965 B
39 lines
965 B
3 years ago
|
name: list
|
||
|
long_name: List
|
||
|
description: An array of elements. See [arrays](Syntax.md#arrays).
|
||
|
is_container: true
|
||
|
|
||
|
methods:
|
||
|
- name: contains
|
||
|
returns: bool
|
||
|
description: |
|
||
|
Returns `true` if the array contains the object
|
||
|
given as argument, `false` otherwise
|
||
|
|
||
|
posargs:
|
||
|
item:
|
||
|
type: any
|
||
|
description: The item to check
|
||
|
|
||
|
- name: get
|
||
|
returns: any
|
||
|
description: |
|
||
|
returns the object at the given index,
|
||
|
negative indices count from the back of the array, indexing out of
|
||
|
bounds returns the `fallback` value *(since 0.38.0)* or, if it is
|
||
|
not specified, causes a fatal error
|
||
|
|
||
|
posargs:
|
||
|
index:
|
||
|
type: int
|
||
|
description: Index of the list position to query. Negative values start at the end of the list
|
||
|
|
||
|
optargs:
|
||
|
fallback:
|
||
|
type: any
|
||
|
description: Fallback value that is returned if the index is out of range.
|
||
|
|
||
|
- name: length
|
||
|
returns: int
|
||
|
description: Returns the current size of the array / list.
|