Category:LSL Functions/ru

From Second Life Wiki
< Category:LSL Functions
Revision as of 04:07, 29 July 2012 by Highstaker Resident (talk | contribs) (Created page with "{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} This category contains built-in LSL functions. == Mutability == All types in LSL are immutable (they can't b…")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This category contains built-in LSL functions.

Mutability

All types in LSL are immutable (they can't be mutated by side effect), variables can only be changed by being overwritten. There is no way to indirectly modify a variable's value; the only way is through direct interaction with a storing operator (=, +=, -=, *=, /=, %=, ++, --).

  • Built-in functions will never modify the variables used as parameters.
  • User functions that change the values of parameters inside the function scope will not have those changes applied to the variables that supplied those parameters. [1]

Functions

Key Description
 NEW  Эта функция введена недавно.
 I  Идентификационный номер данной функции неизвестен или отсутствует.
 D  Эта функция считается исключённой, но до сих пор работает.
Использование таких функций не рекомендуется.
 R  Эта функция не только исключена, но и удалена.
Не используйте эти функции.
 U  Эта функция ещё не внедрена.
Не используйте эти функции.
 B  Эта функция считается сломанной и может работать неправильно.
 G  Эта функция требует режим бога.
Эти функции не могут быть использованы.
 RQ  Эта функция была запрошена несколькими пользователями, но еще не введена.
Не используйте эти функции.

Footnotes

  1. ^ Function parameters are effectively passed by value, not by reference. When pass by reference is used in LSO-LSL, the reference points to a copy of the value, not to the original.