Jake Wharton
Jake Wharton
Ooo a chainable method that qualifies the assertion like `inOrder()` is quite clever. Can't be that hard to put a synthetic `void`-returning overload in the jar to maintain binary compatibility,...
It would probably have to be `utf8Appendable()`, or on the JVM we could also do `appendable(Charset)`.
I selfishly would like to see the amount of bytes the file requires in the actual zip format. That is, to say, summing the format size of each file should...
And it's been around since its JavaPoet roots.
> just let us apply a proper formatter after kotlinpoet is done You have always been and continue to be able to do this.
> no that is sadly not true. Then you have a broken formatter and should seek a new one immediately. Both ktlint and ktfmt handle formatting the string output of...
That is working as designed currently. This behavior [is documented](https://square.github.io/kotlinpoet/functions/#spaces-wrap-by-default), along with how to opt-out of wrapping. I have already linked you to an issue to vote for which will...
And this issue is specifically about collapsing `CodeBlock`'s properly (i.e., not through `toString()`). This would also negate any need to post-process `CodeBlock.toString()`, but does not obviate the need to prevent...
So there's multiple statements here not just one which is why it gets weird when you try to use `addStatement` which was designed to emit a single statement. Traditionally, constructs...