Tile - Array - Set – Ylands

From Bohemia Interactive Community
Jump to navigation Jump to search
m (YlandsClassyBot moved page Ylands Tile - Array get-set item to Ylands:Tile - Array - Set: New Structure)
No edit summary
Line 1: Line 1:
[[Image:Editor-VS_tile-array_get.jpeg]]
<!---
*Returns a value at given position in the array
THIS PAGE WAS GENERATED AUTOMATICALLY; DO NOT EDIT IT, OTHERWISE YOUR CHANGES WILL BE LOST DURING FUTURE UPDATE.
*'''Index''' - index of target cell in the array
-->
== Set(Array, Index, Value) ==


[[Image:Editor-VS_tile-array_set.jpeg]]
[[File:YlandsTile-190.png]]
*Set a value to given position in the array
*'''Index''' - index of target cell in the array
*'''Value''' - value to be set at index cell


=Notes=
<pre>setItem(index: number, value: T): void;</pre>
*Values in all cells of one array does not have to be of same type (i.e string, vector, number)
=== Parameters ===
*Index numbers always start from 0, e.g: Array of [[Ylands Tile - Array length|length]] 3 has indexes 0, 1, 2
 
==== index ====
 
Index of the target cell in the array.
 
==== value ====
 
Target value.
 
=== Description ===
 
Sets a value to the 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.
 
== Set(Array, Index, Value) ==
 
[[File:YlandsTile-765.png]]
 
<pre>setItem(index: number, value: T[]): void;</pre>
=== Parameters ===
 
==== index ====
 
Index of the target cell in the array.
 
==== value ====
 
=== Description ===
 
Set a value to the 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.




Line 18: Line 54:


[[Category: Instructions]]
[[Category: Instructions]]
[[Category: Ylands 0.10]]

Revision as of 09:53, 8 July 2021

Set(Array, Index, Value)

YlandsTile-190.png

setItem(index: number, value: T): void;

Parameters

index

Index of the target cell in the array.

value

Target value.

Description

Sets a value to the 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.

Set(Array, Index, Value)

YlandsTile-765.png

setItem(index: number, value: T[]): void;

Parameters

index

Index of the target cell in the array.

value

Description

Set a value to the 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.