Operation | | Returns |
string[int] | | Returns the ascii value of the Nth character in the string. |
array[int] | | Return the element in the array corresponding to the integer. |
array[int]=mixed | | Sets the element in the array to the mixed value. |
mapping[mixed]
mapping->identifier
| | Returns the value associated with the index, 0 if it is not found. |
mapping[mixed]=mixed
mapping->identifier=mixed
| | Associate the second mixed value with the first mixed value. |
multiset[mixed]
multiset->identifier
| | Returns 1 if the index (the value between the brackets) is present in the multiset, 0 otherwise. |
multiset[mixed]=mixed
multiset->identifier=mixed
| | If the mixed value is true the index is added to the multiset. Otherwise the index is removed from the multiset. |
object[string]
object->identifier
| | Returns the value of the named identifier in the object. |
object[string]=mixed
object->identifier=mixed
| | Set the given identifier in the object to the mixed value. Only works if the identifier references a variable in the object. |
program[string]
program->identifier
| | Returns the value of the named constant identifier
in the program. |
string[int..int] | | Returns a piece of the string. |
array[int..int] | | Returns a slice of the array. |