Wednesday, July 06, 2016

String.trim is an optimization hack

Turns out java.lang.String.trim() has its own unique definition of "whitespace" in order to be able to reuse the same underlying char array.

This blog post from 2008 talks in a lot of detail: https://closingbraces.net/2008/11/11/javastringtrim/

No comments:

Building a Dockerfile Transpiler

I'm excited to share dxform , a side project I've been working on while searching for my next role: a Dockerfile transpiler that can...