It's already possible to write nearly that by using `apply`: ``` assertThat(foo).apply { isNotNull() isNotEqualTo(bar) } ``` Might it be worth a shortcut? Anecdotes welcome.
It's already possible to write nearly that by using
apply:Might it be worth a shortcut? Anecdotes welcome.