Hi ALL! I noticed that Unpack() function stops "unpacking" when it found a Nil value.. So Tables with some Nil spaces wasnt displayed correctly but only for the first n-fields that wasnt the first Nil that stops the output...
For example:
Code: Select all
foo = {1, 5, 7 , 8, Nil, 56, 78, 43, 5, 6, Nil, 467, 34, 56, 897, 34}
DebugPrint(Unpack(foo))
1 5 7 8
and not show the other values... On the guide no reference to that behaviour so I think that was a bug... I'm wrong?