Here's another thing I should probably know ..
Why is this really slow:
But this is super fast?
Marc
Why is this really slow:
B4X:
For i = 0 to SomeList.Size - 1
Dim qMap As Map = SomeList.get(i)
Dim str As String = qMap.get("idkey")
Next
But this is super fast?
B4X:
For i = 0 to SomeList.Size - 1
Dim qMap as Map
qMap = SomeList.get(i)
Dim str as String
str = qMap.get("idkey")
Next
Marc