Table of Contents
- Monkey
- Arrays
- Map
- Strings
Arrays
array array( [mixed ...] )
... | mixed | Infinite number of parameters separated by commas. |
mixed array_get( array arr_obj , int index )
arr_obj | array | The array object being accessed. |
index | int | An index that represents the position of the value an array. |
void array_set( array arr_obj , int index , mixed value )
arr_obj | array | The array object being accessed. |
index | int | An index that represents the position of the value an array. |
value | mixed | The value that will be set at the specified index |
int array_size( array arr_obj )
arr_obj | array | The array object being accessed. |
void array_print( array arr_obj [, bool format = false] )
arr_obj | array | The array object being accessed. |
format | bool | Truth on whether or not data should be nicely formatted. |
void array_resize( array arr_obj , int new_size )
arr_obj | array | The array object being accessed. |
new_size | int | The new size of the array. |