LIST STAT NUM COUNT: Difference between revisions
Jump to navigation
Jump to search
New page: {{LSL Constant |name=LIST_STAT_NUM_COUNT |type=integer |value=8 |desc=Retrieves the number of float and integer elements. |pa= |text= |pb= |examples |constants= <!--{{LSL ConstRow|CHANGED_... |
Add example |
||
| Line 7: | Line 7: | ||
|text= | |text= | ||
|pb= | |pb= | ||
|examples | |examples=<lsl> | ||
float num = llListStatistics( LIST_STAT_NUM_COUNT, mixedList ); | |||
</lsl> | |||
|constants= | |constants= | ||
<!--{{LSL ConstRow|CHANGED_SHAPE}}--> | <!--{{LSL ConstRow|CHANGED_SHAPE}}--> | ||
Revision as of 05:57, 15 May 2009
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer LIST_STAT_NUM_COUNT = 8;The integer constant LIST_STAT_NUM_COUNT has the value 8
Retrieves the number of float and integer elements.
Caveats
Related Articles
Functions
| • | llListStatistics |
Examples
<lsl> float num = llListStatistics( LIST_STAT_NUM_COUNT, mixedList ); </lsl>