RDSERIOUSLY? You generating new string every time using CONCATENATION? Not even using StringBuilder? Not saying about optimization and using char[]. No wonder then that you get a load of garbage collection and losing performance. That's cheating benchmark.Comment·Article·Aug 18, 2023·Rust vs. Java: Rust Outpaces Java in a Brute-Force Battle
RDAll color combination examples in this article in fact are disgusting...Comment·Article·Aug 19, 2022·The 60:30:10 color rule for web design
RDYou are "saving" allocations, but bloating bytecode with inline functions. Is it worth it? And if you remove the inline modifier, there will be allocations for lambdas. Just let the GC do the work.Comment·Article·Dec 9, 2021·How to return 2+ values with 0 allocation in Kotlin