netrunner icon indicating copy to clipboard operation
netrunner copied to clipboard

use stringer/strcat instead of str for all of our string composition

Open NBKelly opened this issue 5 months ago • 4 comments

I went through (almost) every backend class to do this. Essentially, java is sloppy and slow with string operations using the basic libraries, and clojure inherits this. Stringer is a bit more optimized, so this is basically a "free" speedup (do note that the compile time will be a little longer, but we don't care too much about that).

NBKelly avatar Sep 14 '24 00:09 NBKelly