Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (325 - 327 of 3904)

Ticket Resolution Summary Owner Reporter
#2801 Rejected Array initialization broken anonymous
Description
Local $array = []

This doesn't work anymore.

#548 Rejected Array initializing syntax everywhere monoceres
Description

It would be great if this syntax: [1,2,3] would work just like an array initialized with that syntax. This is how I mean:

test([1,2,3])

Func test($array)
EndFunc
#600 Fixed Array.au3 in Beta 3.2.13.8 the functions don't work with 2D Array Gary TalivanIBM
Description

i have proved the Beta 3.2.13.8 and, for example, the function _ArraySearch don't work with 2D Array, in Array.au3 the second line of this function is

If UBound($avArray, 0) <> 1 Then Return SetError(2, 0, 0)

and always if the $avArray is 2D returns error 2 because UBound returns 2 and it's diferent of 1

if we change for

If UBound($avArray, 0) > 2 And UBound($avArray, 0) < 1 Then Return SetError(2, 0, 0)

the function accepts 2D Array, the first line of code is in all of the functions in Array.au3.

Note: See TracQuery for help on using queries.