The built-in list type. Example list expressions:Documentation Index
Fetch the complete documentation index at: https://bazel-promptless-add-bazelrc-env-var-docs.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
0):
+ operator to concatenate two lists. Example:
Members
append
Parameters
ParameterDescriptionitem
required
Item to add at the end.
clear
extend
Parameters
ParameterDescriptionitems
iterable;
required
Items to add at the end.
index
Parameters
ParameterDescriptionx
required
The object to search.
startint;
default is unbound
The start index of the list portion to inspect.
endint;
default is unbound
The end index of the list portion to inspect.
insert
Parameters
ParameterDescriptionindexint;
required
The index of the given position.
item
required
The item.
pop
index is specified, it removes and returns the last item in the list.
Parameters
ParameterDescriptioniint;
default is -1
The index of the item.
remove
Parameters
ParameterDescriptionx
required
The object to remove.