PureData CEAMMC library web documentation
доступно с версии: 0.1
Returns the element at the given index position in the list. @rel property allows to acess elements in range (-LIST_SIZE, LIST_SIZE). Negative index means position from the end of the list. For example: -1 returns last element. @clip property: if element index < 0 - first element returned. If element index >= LIST_SIZE last element returned. @wrap property: in range [0, LIST_SIZE) ordinal elements are returned. Other indexes are wrapped by modulo division.
@method
Запросить/установить methods of processing of negative/invalid indexes
тип: symbol
варианты: rel, clip, fold, wrap
по умолчанию: rel
@rel
Запросить/установить alias to @method rel. Negative index means position from the end of the list
тип: alias
@clip
Запросить/установить alias to @method clip. If index < 0 - return first element. If index greater or
equal list size - return last element
тип: alias
@fold
Запросить/установить alias to @method fold. In range [0, LIST_SIZE) ordinal elements are returned.
[LIST_SIZE, 2*LIST_SIZE) - returned in negative order etc.
тип: alias
@wrap
Запросить/установить alias to @method wrap. In range [0, LIST_SIZE) ordinal elements are returned.
Other indexes are wrapped by modulo division.
тип: alias
@index
Запросить/установить indexes
тип: list
по умолчанию: 0
@default
Запросить/установить default output value if not found. If not set, outputs error message to console
тип: atom
по умолчанию: null
Смотрите также: [list.^at] [list.apply_to]
Авторы: Serge Poltavsky
Лицензия: GPL3 or later