Tile - Array - Get – Ylands

From Bohemia Interactive Community
Revision as of 09:53, 8 July 2021 by YlandsClassyBot (talk | contribs) (Created page with "<!--- THIS PAGE WAS GENERATED AUTOMATICALLY; DO NOT EDIT IT, OTHERWISE YOUR CHANGES WILL BE LOST DURING FUTURE UPDATE. --> == Get(Array, Index) == File:YlandsTile-189.png...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Get(Array, Index)

YlandsTile-189.png

getItem(index: number): T;

Parameters

index

Index of the target cell in the array.

Returns

any Returns a value at given position in the array.

Description

Returns a value at given position in the array.

Notes

  • Values in the cells of one array do not have to be of the same type (i.e string, vector, number).
  • Index numbers always start from 0, e.g: Array of length 3 has indexes 0, 1 and 2.

Get(Array, Index)

YlandsTile-764.png

getItem(index: number): T[];

Parameters

index

Index of the target cell in the array.

Returns

any[]

Description

Returns a value at given position in the array.

Notes

  • Values in the cells of one array do not have to be of the same type (i.e string, vector, number).
  • Index numbers always start from 0, e.g: Array of length of 3 has indexes 0, 1, 2.