1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-20 06:44:44 +00:00
QB64-PE/source/ide
Steve McNeill 6a895f8405 Optimize string addition somewhat to reduce IDE lag
Very simple change here, to basically take:

a$ = b$ + c$ + d$ + e$ + f$

And make it:

a$ = b$ + (c$ + d$ + e$) + f$

....

This speeds up the IDE due to (c$ + d$ + e$) being small strings, while a$ and f$ are larger strings...  It's more efficient to move and add those small strings first, than it is to add them to the large strings, making them larger, at each step.
2024-06-02 16:34:15 -04:00
..
wiki Added missing UTF8 code 2024-04-29 22:02:27 +02:00
ide_global.bas Add code export abilities 2023-03-19 12:27:54 +01:00
ide_methods.bas Optimize string addition somewhat to reduce IDE lag 2024-06-02 16:34:15 -04:00