Custom Query (3917 matches)
Results (340 - 342 of 3917)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3781 | No Bug | Assign and Eval, Execute, they don't work like they should when it comes to variables. | ||
| Description |
Assign and Eval, Execute, they don't work like they should when it comes to variables. You cannot assign values to arrays, nor values when it comes to execute, nor using ByRef param. |
|||
| #3515 | Rejected | Assigning directly a value to an element of an array in array | ||
| Description |
If you want to assign a value to an element of an array contained in another array, you should use another function with a ByRef parameter, it could be useful if we could assign directly that value, this is an example that works: Local $a[3] = [1, 2], $b[3] = [3, 4]
$a[2] = $b
ModArray($a[2], 2, "Test")
ConsoleWrite(($a[2])[2] & @CRLF)
Func ModArray(ByRef $aArray, $iElement, $value)
$aArray[$iElement] = $value
EndFunc
If I try to assign directly the value writing ($a[2])[2] = "Test" I get the error: Statement cannot be just an expression. |
|||
| #487 | Rejected | Associative arrays | ||
| Description |
Core support for associative arrays : $array[0]="whatever";normal index based array $arrayzero="whatever";:D associative array |
|||
