Usually I use code like this:
instead of:
because I think the first line is more readable.
Well, I did a simple test and it seems to me that the first way is much slower (probably about 80%)
This is just a... "warning"
B4X:
If Not(Condition) Then
instead of:
B4X:
If Condition = False Then
because I think the first line is more readable.
Well, I did a simple test and it seems to me that the first way is much slower (probably about 80%)
This is just a... "warning"