CoolDalek
Results
2
comments of
CoolDalek
If I understand everything correctly - currently monix use longs for padding. With recent updates of JVM layouter - bytes probably should be preferred for this purpose. Source: https://shipilev.net/jvm/objects-inside-out/#_field_packing Also,...
Performance-sensitive code usually switches to either while-loops or tail recursive functions. To ensure the optimization of tail recursive functions Scala standard library contains `@tailrec` annotation. Scala developers usually don't care...