Place "static" private method in companion?

class MyClass {
    fun doSomethingUseful(x: Int) {
        val y = helper(x)
        ...
    }
}

private fun helper(x: Int) = x * 2

A final method has same performance of a static one, quite same for monomorphic invocation of a regular method, so avoid premature optimization :wink: